Browse Source

Makefile: Use short parameters to install.

OS X install do not support long command line parameters.
Georgi Chorbadzhiyski 9 years ago
parent
commit
2971db5753
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Makefile

+ 1
- 1
Makefile View File

@@ -95,7 +95,7 @@ install: all
95 95
 	$(SAY) "INSTALL $(INSTALL_PRG) -> $(INSTALL_PRG_DIR)"
96 96
 	$(Q)-install $(INSTALL_PRG) "$(INSTALL_PRG_DIR)"
97 97
 	$(SAY) "INSTALL $(INSTALL_DOC) -> $(INSTALL_DOC_DIR)"
98
-	$(Q)-install --mode 0644 $(INSTALL_DOC) "$(INSTALL_DOC_DIR)"
98
+	$(Q)-install -m 0644 $(INSTALL_DOC) "$(INSTALL_DOC_DIR)"
99 99
 
100 100
 uninstall:
101 101
 	@-for FILE in $(INSTALL_PRG); do \

Loading…
Cancel
Save