diff options
author | Roy Marples <roy@marples.name> | 2008-03-15 00:02:39 +0100 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2008-03-15 00:02:39 +0100 |
commit | 064360cde8f35d8ac6faf418ddfa39b9f3da4347 (patch) | |
tree | 595f03703f165581447560b62dcb8844f46d6ceb /extras/collect | |
parent | 0ea5e96edbc66319d7711d9eab8719a2c98c843d (diff) |
Makefile: do not require GNU install
Diffstat (limited to 'extras/collect')
-rw-r--r-- | extras/collect/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extras/collect/Makefile b/extras/collect/Makefile index 6168a8b805..76487017dd 100644 --- a/extras/collect/Makefile +++ b/extras/collect/Makefile @@ -44,7 +44,8 @@ clean: .PHONY: clean install-bin: all - $(INSTALL_PROGRAM) -D $(PROG) $(DESTDIR)$(libudevdir)/$(PROG) + $(INSTALL) -d $(DESTDIR)$(libudevdir) + $(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(libudevdir)/$(PROG) .PHONY: install-bin uninstall-bin: |