diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-11-08 01:48:28 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-11-08 01:48:28 +0000 |
commit | 0f16f9693f47687136e5058916d0d04dcb611217 (patch) | |
tree | 621a0c76850737d6353385ece3f3fda54219f7b0 /perl-install/Makefile | |
parent | 83e615434cf1bc3a692ab95b9b8aac3af6c366c8 (diff) | |
download | drakx-0f16f9693f47687136e5058916d0d04dcb611217.tar drakx-0f16f9693f47687136e5058916d0d04dcb611217.tar.gz drakx-0f16f9693f47687136e5058916d0d04dcb611217.tar.bz2 drakx-0f16f9693f47687136e5058916d0d04dcb611217.tar.xz drakx-0f16f9693f47687136e5058916d0d04dcb611217.zip |
no_comment
Diffstat (limited to 'perl-install/Makefile')
-rw-r--r-- | perl-install/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/perl-install/Makefile b/perl-install/Makefile index 532956cfc..942c272b7 100644 --- a/perl-install/Makefile +++ b/perl-install/Makefile @@ -74,12 +74,13 @@ install_pms: $(DIRS) dest=$(DESTREP4PMS)/`dirname $$i`; \ install -d $$dest; \ perl -ne 'print' $$i > $(DESTREP4PMS)/$$i; \ - perl -pe 's/#-.*//; $$_ = "\n" if (/^=head/ .. /^=cut/) || /use (diagnostics|vars|strict)/' $$i > $(DESTREP4PMS)/$$i; \ + perl -pe 's/#-.*//; $$_ = "\n" if (/^=head/ .. /^=cut/) || /use (diagnostics)/' $$i > $(DESTREP4PMS)/$$i; \ done +# perl -pe 's/#-.*//; $$_ = "\n" if (/^=head/ .. /^=cut/) || /use (diagnostics|vars|strict)/' $$i > $(DESTREP4PMS)/$$i; \ cp *.rc $(DESTREP4PMS) install -d $(DESTREP4PMS)/po - cp po/*.po* $(DESTREP4PMS)/po + cp -f po/*.po* $(DESTREP4PMS)/po || true ln -sf perl-install/install2 $(DEST)/usr/bin ln -sf perl-install/commands $(DEST)/usr/bin chmod a+x $(DESTREP4PMS)/install2 @@ -149,7 +150,7 @@ get_needed_files: $(DIRS) else \ cp -f ../modules/modules.cpio.bz2 $(DEST)/lib/; \ install -d $(DEST)/lib/modules; \ - cp -f ../modules/pristine/* $(DEST)/lib/modules; \ + cp -f ../modules/pristine/* $(DEST)/lib/modules || true; \ fi ln -s install2 $(DEST)/usr/bin/runinstall2 |