summaryrefslogtreecommitdiff
path: root/extras/ata_id
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-03-15 00:02:39 +0100
committerKay Sievers <kay.sievers@vrfy.org>2008-03-15 00:02:39 +0100
commit064360cde8f35d8ac6faf418ddfa39b9f3da4347 (patch)
tree595f03703f165581447560b62dcb8844f46d6ceb /extras/ata_id
parent0ea5e96edbc66319d7711d9eab8719a2c98c843d (diff)
Makefile: do not require GNU install
Diffstat (limited to 'extras/ata_id')
-rw-r--r--extras/ata_id/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/extras/ata_id/Makefile b/extras/ata_id/Makefile
index c9691da1e2..bab49a250d 100644
--- a/extras/ata_id/Makefile
+++ b/extras/ata_id/Makefile
@@ -49,7 +49,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:
@@ -57,6 +58,7 @@ uninstall-bin:
.PHONY: uninstall-bin
install-man:
+ $(INSTALL) -d $(DESTDIR)$(mandir)/man8
$(INSTALL_DATA) -D $(PROG).8 $(DESTDIR)$(mandir)/man8/$(PROG).8
.PHONY: install-man