diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-12-04 14:54:00 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-12-04 14:54:00 +0000 |
commit | e74424893376516bb665a7e54a1843ccb6d50232 (patch) | |
tree | 25865b1a9716ef3a14341c63dba35cae53585f8d /perl-install/install/Makefile | |
parent | ed93985587c7121ecdfa61d85bb55a47b9f32156 (diff) | |
download | drakx-backup-do-not-use-e74424893376516bb665a7e54a1843ccb6d50232.tar drakx-backup-do-not-use-e74424893376516bb665a7e54a1843ccb6d50232.tar.gz drakx-backup-do-not-use-e74424893376516bb665a7e54a1843ccb6d50232.tar.bz2 drakx-backup-do-not-use-e74424893376516bb665a7e54a1843ccb6d50232.tar.xz drakx-backup-do-not-use-e74424893376516bb665a7e54a1843ccb6d50232.zip |
fix missing command links (mga#8289)
breakage introduced in commit r6341 by colin on 2012-10-22 ("Only
emulate shell commands via perl if real versions do not exist already")
Diffstat (limited to 'perl-install/install/Makefile')
-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 e1902c985..f3a63da8f 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 if [ ! -x /usr/bin/$$i ]; then ln -sf commands $(DEST)/usr/bin/$$i; fi; done + for i in `perl -ne 's/sub (\w+?)_?(\(\))? {.*/$$1/ and print' commands.pm` sync; do if [ ! -x $(DEST)/usr/bin/$$i ]; then ln -sf commands $(DEST)/usr/bin/$$i; fi; done # install & clean perl modules: install -d $(DESTREP4PMS) |