diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-02-21 12:36:00 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-02-21 12:36:00 +0000 |
commit | 2fc65cb88a7095bb2d6aa670d8dd39b3fe204340 (patch) | |
tree | 8b823a9c93da017f4b060d9f0f5c6ae31a191721 /perl-install/Makefile | |
parent | 3cbd47c6fab05fd5f706b3f7e7ba6a5ceec10326 (diff) | |
download | drakx-2fc65cb88a7095bb2d6aa670d8dd39b3fe204340.tar drakx-2fc65cb88a7095bb2d6aa670d8dd39b3fe204340.tar.gz drakx-2fc65cb88a7095bb2d6aa670d8dd39b3fe204340.tar.bz2 drakx-2fc65cb88a7095bb2d6aa670d8dd39b3fe204340.tar.xz drakx-2fc65cb88a7095bb2d6aa670d8dd39b3fe204340.zip |
make a difference between PMS and ALLPMS. For install, only use PMS
Diffstat (limited to 'perl-install/Makefile')
-rw-r--r-- | perl-install/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/perl-install/Makefile b/perl-install/Makefile index fc74b38f7..4037e95ab 100644 --- a/perl-install/Makefile +++ b/perl-install/Makefile @@ -7,7 +7,7 @@ MOFILES = $(POFILES:%.po=%.mo) all: TAGS $(DIRS) -TAGS: $(PMS) +TAGS: $(ALLPMS) etags -o - $^ /usr/lib/perl5/site_perl/*/MDK/Common/*.pm | ./perl2etags > $@ clean: @@ -38,7 +38,7 @@ test_pms: verify_c for i in install2 install_steps_*.pm; do perl -cw -I. $$i; done verify_c: - ./verify_c $(PMS) + ./verify_c $(ALLPMS) %.mo: %.po msgfmt -o $@ $< @@ -59,10 +59,11 @@ install_pms: $(DIRS) perl -pe 's|#!/usr/bin/perl.*\n|#!/usr/bin/perl -d \n|' install2 > $(DESTREP4PMS)/install2; \ fi \ + rm -f $(DESTREP4PMS)/{bootlook,tinyfirewall}.pm + cp share/*.rc $(DESTREP4PMS) chmod a+x $(DESTREP4PMS)/install2 chmod a+x $(DESTREP4PMS)/commands - chmod a+x $(DESTREP4PMS)/standalone/* chmod a+x $(DESTREP4PMS)/g_auto_install chmod a+x $(DESTREP4PMS)/live_install* |