summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2007-04-02 17:19:20 +1000
committerJeremy Kerr <jk@ozlabs.org>2007-04-03 14:16:37 +1000
commit97c3ef20eed550aa3323fa20848a62f9abe87704 (patch)
tree3d8e62412e04fb35cfc0f2889faad279da683013 /Makefile
parentbd803b47266f399c41c7e560b8769ef172f0fca9 (diff)
downloadtalos-petitboot-97c3ef20eed550aa3323fa20848a62f9abe87704.tar.gz
talos-petitboot-97c3ef20eed550aa3323fa20848a62f9abe87704.zip
Use DESTDIR for make install
Add a DESTDIR environment variable to allow petitboot to be installed to a temporary root. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 642850d..240f5d6 100644
--- a/Makefile
+++ b/Makefile
@@ -27,10 +27,10 @@ udev-helper: devices/udev-helper.o devices/params.o devices/yaboot-cfg.o \
devices/%: CFLAGS+=-I.
install: all
- $(INSTALL) -D petitboot $(PREFIX)/sbin/petitboot
- $(INSTALL) -D udev-helper $(PREFIX)/sbin/udev-helper
- $(INSTALL) -Dd $(PREFIX)/share/petitboot/artwork/
- $(INSTALL) -t $(PREFIX)/share/petitboot/artwork/ \
+ $(INSTALL) -D petitboot $(DESTDIR)$(PREFIX)/sbin/petitboot
+ $(INSTALL) -D udev-helper $(DESTDIR)$(PREFIX)/sbin/udev-helper
+ $(INSTALL) -Dd $(DESTDIR)$(PREFIX)/share/petitboot/artwork/
+ $(INSTALL) -t $(DESTDIR)$(PREFIX)/share/petitboot/artwork/ \
$(foreach a,$(ARTWORK),artwork/$(a))
dist: $(PACKAGE)-$(VERSION).tar.gz
OpenPOWER on IntegriCloud