diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-11-13 14:44:00 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-11-13 14:44:00 +0000 |
commit | a4a7e80c8c89ae1e962a86ae14e2f1865f95d1f7 (patch) | |
tree | 26e73a6ca23f81d7e02c2643a852cec04a5be447 | |
parent | 602848d7fba65f080b8a5a3f46b881b48320e4f5 (diff) | |
download | perl-MDK-Common-a4a7e80c8c89ae1e962a86ae14e2f1865f95d1f7.tar perl-MDK-Common-a4a7e80c8c89ae1e962a86ae14e2f1865f95d1f7.tar.gz perl-MDK-Common-a4a7e80c8c89ae1e962a86ae14e2f1865f95d1f7.tar.bz2 perl-MDK-Common-a4a7e80c8c89ae1e962a86ae14e2f1865f95d1f7.tar.xz perl-MDK-Common-a4a7e80c8c89ae1e962a86ae14e2f1865f95d1f7.zip |
new perl_checker written in OCaml (not as featured as previous perl_checker yet
-rw-r--r-- | Makefile | 12 | ||||
-rw-r--r-- | perl-MDK-Common.spec | 5 |
2 files changed, 13 insertions, 4 deletions
@@ -7,6 +7,8 @@ INSTALLVENDORLIB = $(shell eval "`perl -V:installvendorlib`"; echo $$installvend GENERATED = MDK/Common.pm index.html +.PHONY: perl_checker.src + all: $(GENERATED) test index.html: MDK/Common.pm @@ -15,16 +17,20 @@ index.html: MDK/Common.pm MDK/Common.pm: %: %.pl perl $< > $@ -test: - ./perl_checker MDK/Common/*.pm +perl_checker.src: + $(MAKE) -C $@ + +test: perl_checker.src + perl_checker.src/perl_checker MDK/Common/*.pm clean: rm -f $(GENERATED) + $(MAKE) -C perl_checker.src clean find -name "*~" | xargs rm -rf install: clean all install -d $(BINDIR) $(INSTALLVENDORLIB)/MDK/Common - install perl_checker $(BINDIR) + install perl_checker.src/perl_checker $(BINDIR) install -m 644 MDK/Common.pm $(INSTALLVENDORLIB)/MDK install -m 644 MDK/Common/*.pm $(INSTALLVENDORLIB)/MDK/Common diff --git a/perl-MDK-Common.spec b/perl-MDK-Common.spec index 8e886a6..3e11c0c 100644 --- a/perl-MDK-Common.spec +++ b/perl-MDK-Common.spec @@ -2,7 +2,7 @@ # do not change the version here, change in MDK/Common.pm.pl %define version THEVERSION -%define release 18mdk +%define release 19mdk Summary: Various simple functions Name: perl-MDK-Common @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT # MODIFY IN THE CVS: cvs.mandrakesoft.com:/cooker soft/perl-MDK-Common %changelog +* Wed Nov 13 2002 Pixel <pixel@mandrakesoft.com> 1.0.4-1mdk +- new perl_checker written in OCaml (not as featured as previous perl_checker yet) + * Thu Nov 7 2002 Pixel <pixel@mandrakesoft.com> 1.0.3-18mdk - perl_checker: many more warnings - warn unneeded parentheses after an infix foreach/if/unless |