diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/Makefile | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/Makefile b/perl-install/install/Makefile index 048e401f4..e1902c985 100644 --- a/perl-install/install/Makefile +++ b/perl-install/install/Makefile @@ -48,7 +48,7 @@ install_pms: [ -d $(DEST) ] || ../../tools/mdkinst_stage2_tool --uncompress $(STAGE2_DEST) # commands implemented in perl: - for i in `perl -ne 's/sub (\w+?)_?(\(\))? {.*/$$1/ and print' commands.pm` sync; do ln -sf commands $(DEST)/usr/bin/$$i; done + for i in `perl -ne 's/sub (\w+?)_?(\(\))? {.*/$$1/ and print' commands.pm` sync; do if [ ! -x /usr/bin/$$i ]; then ln -sf commands $(DEST)/usr/bin/$$i; fi; done # install & clean perl modules: install -d $(DESTREP4PMS) diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index a4ea85de8..e4cc96cbe 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- prefer real binaries over the lightweight perl wrappers + Version 14.48 - 22 October 2012 - fix detecting if udev is already running |