Skip to content

Commit a5bf999

Browse files
authored
Merge pull request #139 from maximeborges/master
Fix SRC_PATH in install command from Makefile
2 parents 658aae7 + e3f68a8 commit a5bf999

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

arcd/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ deps:
4343
# runs on previlege
4444
install: build
4545
@echo "Installing $(TARGET) in $(PREFIX_DIR)"
46-
@install -D -m 744 (SRC_PATH)/$(TARGET) $(BIN_DIR)/$(TARGET)
46+
@install -D -m 744 $(SRC_PATH)/$(TARGET) $(BIN_DIR)/$(TARGET)
4747
@setcap 'cap_net_bind_service=+ep' $(BIN_DIR)/$(TARGET)
4848
@cp -r ../arc $(WEBAPP_DIR)/arc
4949
@install -D -m 644 $(SRC_PATH)/sample_config.json $(CONFIG_DIR)/$(TARGET)/config.json

0 commit comments

Comments
 (0)