diff options
Diffstat (limited to 'perl-install/Makefile')
-rw-r--r-- | perl-install/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/Makefile b/perl-install/Makefile index 49ff45b6d..2dfa51a01 100644 --- a/perl-install/Makefile +++ b/perl-install/Makefile @@ -260,3 +260,8 @@ cvstag: nuke_perl: find ../$(PACKAGE)-$(PKGVERSION) -name '*.pm' | xargs perl -pi -e 's/\s*use\s+(diagnostics|strict|vars|warnings).*//g' find ../$(PACKAGE)-$(PKGVERSION)/standalone -type f | xargs perl -pi -e 's/\s*use\s+(diagnostics|strict|vars|warnings).*//g' + +dont_run_directly_stage2: + rm -f $(DEST)/usr/bin/runinstall2 + echo -e '#!/bin/sh\n\nexec "/usr/bin/sh"' > $(DEST)/usr/bin/runinstall2 + chmod a+x $(DEST)/usr/bin/runinstall2 |