diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-07-15 19:53:34 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-07-15 19:53:34 +0000 |
commit | d980981557440e11c52f715a3dfbe5418f629846 (patch) | |
tree | c896da98e40c889c067cda4b3988edf089ba5a18 /utils | |
parent | 85b814759849b338decce0930ba153ad39c5c86f (diff) | |
download | anaconda-d980981557440e11c52f715a3dfbe5418f629846.tar.gz anaconda-d980981557440e11c52f715a3dfbe5418f629846.tar.xz anaconda-d980981557440e11c52f715a3dfbe5418f629846.zip |
don't explicitly strip things. add readmap and mapshdr to the list of things which are installed
Diffstat (limited to 'utils')
-rw-r--r-- | utils/Makefile | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/utils/Makefile b/utils/Makefile index c395c301c..449aafcdf 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -50,14 +50,16 @@ depends: install: all mkdir -p $(DESTDIR)/usr/bin mkdir -p $(DESTDIR)/$(RUNTIMEDIR) - install -m755 -s genhdlist $(DESTDIR)/$(RUNTIMEDIR) + install -m755 genhdlist $(DESTDIR)/$(RUNTIMEDIR) install -m755 trimpcitable $(DESTDIR)/$(RUNTIMEDIR) - install -m755 -s moddeps $(DESTDIR)/$(RUNTIMEDIR) + install -m755 moddeps $(DESTDIR)/$(RUNTIMEDIR) install -m755 filtermoddeps $(DESTDIR)/$(RUNTIMEDIR) - install -m755 -s modlist $(DESTDIR)/$(RUNTIMEDIR) - install -m755 -s checkcards.py $(DESTDIR)/$(RUNTIMEDIR) - install -m755 -s checkisomd5 $(DESTDIR)/$(RUNTIMEDIR) - install -m755 -s implantisomd5 $(DESTDIR)/$(RUNTIMEDIR) + install -m755 modlist $(DESTDIR)/$(RUNTIMEDIR) + install -m755 checkcards.py $(DESTDIR)/$(RUNTIMEDIR) + install -m755 checkisomd5 $(DESTDIR)/$(RUNTIMEDIR) + install -m755 implantisomd5 $(DESTDIR)/$(RUNTIMEDIR) + install -m755 readmap $(DESTDIR)/$(RUNTIMEDIR) + install -m755 mapshdr $(DESTDIR)/$(RUNTIMEDIR) clean: rm -f modlist moddeps snarffont genhdlist mapshdr readmap *.o |