diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-05-24 19:04:34 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-05-24 19:04:34 +0000 |
commit | bc7391c0ccc3aa905a9caeca496168b43a693cb2 (patch) | |
tree | 7217eb066904d15039acafdf475e425af64a9528 /perl-install/install | |
parent | ebdd9bbd788fc9388aead85a2a3a09d0b495c4d6 (diff) | |
download | drakx-bc7391c0ccc3aa905a9caeca496168b43a693cb2.tar drakx-bc7391c0ccc3aa905a9caeca496168b43a693cb2.tar.gz drakx-bc7391c0ccc3aa905a9caeca496168b43a693cb2.tar.bz2 drakx-bc7391c0ccc3aa905a9caeca496168b43a693cb2.tar.xz drakx-bc7391c0ccc3aa905a9caeca496168b43a693cb2.zip |
(install_pms) fix it so that it works if manually run over drakx-net code
eg: when testing new drakx-net code
Diffstat (limited to 'perl-install/install')
-rw-r--r-- | perl-install/install/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install/Makefile b/perl-install/install/Makefile index e75dd298c..8edca9c79 100644 --- a/perl-install/install/Makefile +++ b/perl-install/install/Makefile @@ -55,7 +55,7 @@ install_pms: cd .. ; for i in $(PMS); do \ dest=$(DESTREP4PMS)/`dirname $$i`; \ install -d $$dest; \ - perl -pe 's/#[-+].*//; $$_ = "\n" if (/^=(begin|head)/ .. /^=cut/) || /use (diagnostics|strict|vars|warnings)/' $$i > $(DESTREP4PMS)/$$i; \ + perl -pe 's/#[-+].*//; $$_ = "\n" if (/^=(back|begin|head)/ .. /^=cut/) || /use (diagnostics|strict|vars|warnings)/' $$i > $(DESTREP4PMS)/$$i; \ done cp ../share/*.rc share/*.rc $(DESTREP4PMS) |