diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-06-02 23:56:13 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-06-02 23:56:13 +0000 |
commit | fcefa9389a9f765b757f1308434f3c0c5e442b21 (patch) | |
tree | fe98bf4ee17fe5765992f74c28c55e26e207f88e /perl-install/Makefile | |
parent | eb4be8b8edad5fefb6373cc8c0d26d2b3a98bfce (diff) | |
download | drakx-fcefa9389a9f765b757f1308434f3c0c5e442b21.tar drakx-fcefa9389a9f765b757f1308434f3c0c5e442b21.tar.gz drakx-fcefa9389a9f765b757f1308434f3c0c5e442b21.tar.bz2 drakx-fcefa9389a9f765b757f1308434f3c0c5e442b21.tar.xz drakx-fcefa9389a9f765b757f1308434f3c0c5e442b21.zip |
helper rule
Diffstat (limited to 'perl-install/Makefile')
-rw-r--r-- | perl-install/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/Makefile b/perl-install/Makefile index d60e6068a..72abe4872 100644 --- a/perl-install/Makefile +++ b/perl-install/Makefile @@ -217,3 +217,9 @@ trace_stage2: [ -d $(DEST) ] || $(MISC_DEST)/mdkinst_stage2_tool $(STAGE2_DEST) f=`perldoc -l Devel::Trace`; install -m 644 -D $$f $(DEST)$$f perl -pi -e 's|(#!/usr/bin/perl).*|$$1 -d:Trace|' $(DEST)/usr/bin/runinstall2 + +# [pixel] for my grep looking for any .pm files +pixel_standalone_links: + rm -rf .standalone_apps.swa + mkdir .standalone_apps.swa + for i in $(STANDALONEPMS_); do ln -sf ../standalone/$$i .standalone_apps.swa/$$i.pm; done |