diff options
author | Erik Troan <ewt@redhat.com> | 2000-02-17 20:45:04 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2000-02-17 20:45:04 +0000 |
commit | d532af8f7cf767f9c6ff20fc00f94dca649fcd72 (patch) | |
tree | 724c49fc7aa27d7b59d6d4faf9b4e7f05bad893b /isys | |
parent | f48efb3751c4d4c431bf0995217a15852d23fac9 (diff) | |
download | anaconda-d532af8f7cf767f9c6ff20fc00f94dca649fcd72.tar.gz anaconda-d532af8f7cf767f9c6ff20fc00f94dca649fcd72.tar.xz anaconda-d532af8f7cf767f9c6ff20fc00f94dca649fcd72.zip |
changed cp's to install's to break hard links
Diffstat (limited to 'isys')
-rw-r--r-- | isys/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/Makefile b/isys/Makefile index 340151a5d..532447d34 100644 --- a/isys/Makefile +++ b/isys/Makefile @@ -31,7 +31,7 @@ clean: for d in $(SUBDIRS); do make TOPDIR=../$(TOPDIR) -C $$d clean; done install: all - cp $(PYMODULES) isys.py $(DESTDIR)/$(PYTHONLIBDIR) + install $(PYMODULES) isys.py $(DESTDIR)/$(PYTHONLIBDIR) subdirs: for d in $(SUBDIRS); do make TOPDIR=../$(TOPDIR) -C $$d; done |