diff options
author | Erik Troan <ewt@redhat.com> | 2000-03-29 17:13:29 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2000-03-29 17:13:29 +0000 |
commit | 1a61c24b4464655bf59cf715a3a1634333ed838e (patch) | |
tree | 2bd6eecb2fc62c28f20b529cc9f88a2aaa8090af | |
parent | ed04757aee93e72aa8d41e719f72569538158cb9 (diff) | |
download | anaconda-1a61c24b4464655bf59cf715a3a1634333ed838e.tar.gz anaconda-1a61c24b4464655bf59cf715a3a1634333ed838e.tar.xz anaconda-1a61c24b4464655bf59cf715a3a1634333ed838e.zip |
install things into chroot
-rw-r--r-- | utils/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/Makefile b/utils/Makefile index abec25691..7327f87fa 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -26,10 +26,10 @@ genhdlist: genhdlist.c install: all mkdir -p $(DESTDIR)/usr/bin # install -m755 -s genhdlist $(DESTDIR)/usr/bin - install -m755 -s trimpcitable $(RUNTIMEDIR) - install -m755 -s moddeps $(RUNTIMEDIR) - install -m755 -s filtermoddeps $(RUNTIMEDIR) - install -m755 -s modlist $(RUNTIMEDIR) + install -m755 -s trimpcitable $(DESTDIR)/$(RUNTIMEDIR) + install -m755 -s moddeps $(DESTDIR)/$(RUNTIMEDIR) + install -m755 -s filtermoddeps $(DESTDIR)/$(RUNTIMEDIR) + install -m755 -s modlist $(DESTDIR)/$(RUNTIMEDIR) # # removed genhdlist from clean line so it will be distributed on CDROM image |