Skip to content

Commit

Permalink
rmonitor: do no try to install when crosscompiling (#4023)
Browse files Browse the repository at this point in the history
  • Loading branch information
btovar authored Jan 13, 2025
1 parent d2a9117 commit 87e726e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resource_monitor/src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,14 @@ clean:
$(MAKE) -C bindings clean

install: all
ifeq ($(CCTOOLS_OPSYS),DARWIN)
$(MAKE) -C bindings install
else
ifeq ($(CCTOOLS_LINUX_NATIVE_X86_64),yes)
mkdir -p $(CCTOOLS_INSTALL_DIR)/bin
cp $(PROGRAMS) $(CCTOOLS_INSTALL_DIR)/bin/
mkdir -p $(CCTOOLS_INSTALL_DIR)/lib
cp $(LIBRARIES) $(CCTOOLS_INSTALL_DIR)/lib/
$(MAKE) -C bindings install
else
$(MAKE) -C bindings install
endif

test: all
Expand Down

0 comments on commit 87e726e

Please sign in to comment.