r42980 - in /trunk/libembperl-perl/debian: changelog rules

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Thu Aug 27 06:39:01 UTC 2009


Author: dmn
Date: Thu Aug 27 06:38:33 2009
New Revision: 42980

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=42980
Log:
debian/rules: fix target dependencies

this makes debian/rules -j-safe
upstream build process is not -j-safe though

Modified:
    trunk/libembperl-perl/debian/changelog
    trunk/libembperl-perl/debian/rules

Modified: trunk/libembperl-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libembperl-perl/debian/changelog?rev=42980&op=diff
==============================================================================
--- trunk/libembperl-perl/debian/changelog (original)
+++ trunk/libembperl-perl/debian/changelog Thu Aug 27 06:38:33 2009
@@ -1,5 +1,6 @@
 libembperl-perl (2.3.0-1) UNRELEASED; urgency=low
 
+  [ Jonathan Yu ]
   * New upstream release
     + SSI syntax now behaves more like mod_include
     + Improved XHTML/XML support
@@ -18,6 +19,9 @@
   * Remove libcgi-pm-perl | perl-modules (>= 5.8.0) | libcgi-perl,
     which is always satisfied by perl
 
+  [ Damyan Ivanov ]
+  * debian/rules: fix target dependencies
+
  -- Jonathan Yu <frequency at cpan.org>  Tue, 25 Aug 2009 11:33:14 -0400
 
 libembperl-perl (2.2.0-3.1) unstable; urgency=low

Modified: trunk/libembperl-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libembperl-perl/debian/rules?rev=42980&op=diff
==============================================================================
--- trunk/libembperl-perl/debian/rules (original)
+++ trunk/libembperl-perl/debian/rules Thu Aug 27 06:38:33 2009
@@ -47,7 +47,8 @@
 %: %.pod
 	pod2text < $< > $@
 
-config: $(CVSEXTRAS)
+config: config-stamp
+config-stamp: $(CVSEXTRAS)
 	FORCEMP=0
 	dh_testdir
 	APACHE_HDR=$(APACHE_HDR) \
@@ -56,8 +57,8 @@
 	FORCEMP1=$(FORCEMP) \
 	$(PERL) Makefile.PL $(DEBUG) INSTALLDIRS=vendor
 
-build: config build-stamp
-build-stamp: $(POD2TEXT)
+build: build-stamp
+build-stamp: $(POD2TEXT) config-stamp
 	dh_testdir
 	$(MAKE) OPTIMIZE="$(OPTIMIZE)" LD_RUN_PATH=""
 	$(MAKE) TESTARGS="$(TESTARGS)" test




More information about the Pkg-perl-cvs-commits mailing list