diff options
author | Erik Troan <ewt@redhat.com> | 2000-06-07 21:28:16 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2000-06-07 21:28:16 +0000 |
commit | 4c1b8dffae30b7c742e7b35278433d881468e446 (patch) | |
tree | 1a60c0043be50d9b38d562469142552f2cf28a0b /utils | |
parent | 4e98ed21f5f35d1ee2c574d2e58f2417c73e6c23 (diff) | |
download | anaconda-4c1b8dffae30b7c742e7b35278433d881468e446.tar.gz anaconda-4c1b8dffae30b7c742e7b35278433d881468e446.tar.xz anaconda-4c1b8dffae30b7c742e7b35278433d881468e446.zip |
1) removed some strips on install of scripts
2) don't install moddeps on ia64
Diffstat (limited to 'utils')
-rw-r--r-- | utils/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/utils/Makefile b/utils/Makefile index 9632a3396..cfbf41c10 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -35,10 +35,13 @@ depends: install: all mkdir -p $(DESTDIR)/usr/bin + mkdir -p $(DESTDIR)/$(RUNTIMEDIR) # install -m755 -s genhdlist $(DESTDIR)/usr/bin - install -m755 -s trimpcitable $(DESTDIR)/$(RUNTIMEDIR) + install -m755 trimpcitable $(DESTDIR)/$(RUNTIMEDIR) +ifneq ($(ARCH),ia64) install -m755 -s moddeps $(DESTDIR)/$(RUNTIMEDIR) - install -m755 -s filtermoddeps $(DESTDIR)/$(RUNTIMEDIR) +endif + install -m755 filtermoddeps $(DESTDIR)/$(RUNTIMEDIR) install -m755 -s modlist $(DESTDIR)/$(RUNTIMEDIR) install -m755 -s checkcards.py $(DESTDIR)/$(RUNTIMEDIR) |