Makefile: Fix missing '-D' flag on OS X
This commit is contained in:
parent
0d78a6bdfe
commit
4fe770cc3d
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -1,8 +1,8 @@
|
|||
PREFIX ?= /usr
|
||||
RM ?= rm -f
|
||||
INSTALL_DIR ?= install -m755 -d
|
||||
INSTALL_PROG ?= install -m755 -D
|
||||
INSTALL_FILE ?= install -m644 -D
|
||||
INSTALL_PROG ?= install -m755
|
||||
INSTALL_FILE ?= install -m644
|
||||
|
||||
all:
|
||||
@echo Run \'make install\' to install Fetch
|
||||
|
|
Loading…
Reference in a new issue