diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2007-01-21 15:48:58 +0100 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2007-01-21 15:48:58 +0100 |
commit | 86f4ea067e9667d577a6c4af7f8ac355494eb28e (patch) | |
tree | e974b5eafd5c7a2eb1022bd874005d7e78f9f2c9 /extras/path_id/Makefile | |
parent | 8fdad27d613807a4bfa578e378a4dcae6559399a (diff) |
fix INSTALL_PROGRAM vs. INSTALL_SCRIPT
Diffstat (limited to 'extras/path_id/Makefile')
-rw-r--r-- | extras/path_id/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extras/path_id/Makefile b/extras/path_id/Makefile index 7884a5ef5a..2f6890cb32 100644 --- a/extras/path_id/Makefile +++ b/extras/path_id/Makefile @@ -17,10 +17,10 @@ libudevdir = ${prefix}/lib/udev mandir = ${prefix}/usr/share/man configdir = ${etcdir}/udev/ -INSTALL = /usr/bin/install -c +INSTALL = install -c INSTALL_PROGRAM = ${INSTALL} INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_SCRIPT = ${INSTALL_PROGRAM} +INSTALL_SCRIPT = ${INSTALL} all: $(PROG) $(MAN_PAGES) .PHONY: all @@ -37,7 +37,7 @@ clean: .PHONY: clean install-bin: all - $(INSTALL_PROGRAM) -D $(PROG) $(DESTDIR)$(libudevdir)/$(PROG) + $(INSTALL_SCRIPT) -D $(PROG) $(DESTDIR)$(libudevdir)/$(PROG) .PHONY: install-bin uninstall-bin: |