r8103 - in /trunk/libtext-roman-perl/debian: changelog rules

djpig at users.alioth.debian.org djpig at users.alioth.debian.org
Tue Oct 9 00:43:35 UTC 2007


Author: djpig
Date: Tue Oct  9 00:43:35 2007
New Revision: 8103

URL: http://svn.debian.org/wsvn/?sc=1&rev=8103
Log:
build-stamp should depend on configure-stamp, not build.
binary-arch should not depend on clean. Also call
make as $(MAKE). Fixes parallel build. Found by Daniel Schepler.

Modified:
    trunk/libtext-roman-perl/debian/changelog
    trunk/libtext-roman-perl/debian/rules

Modified: trunk/libtext-roman-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libtext-roman-perl/debian/changelog?rev=8103&op=diff
==============================================================================
--- trunk/libtext-roman-perl/debian/changelog (original)
+++ trunk/libtext-roman-perl/debian/changelog Tue Oct  9 00:43:35 2007
@@ -1,9 +1,15 @@
 libtext-roman-perl (3.3-5) UNRELEASED; urgency=low
 
+  [ Martín Ferrari ]
   * Now there is an unofficial release on CPAN, I'm putting the homepage and
     the debian/watch file again.
 
- -- Martín Ferrari <martin.ferrari at gmail.com>  Thu, 16 Aug 2007 05:03:58 +0100
+  [ Frank Lichtenheld ]
+  * build-stamp should depend on configure-stamp, not build.
+    binary-arch should not depend on clean. Also call
+    make as $(MAKE). Fixes parallel build. Found by Daniel Schepler.
+
+ -- Frank Lichtenheld <djpig at debian.org>  Tue, 09 Oct 2007 02:37:51 +0200
 
 libtext-roman-perl (3.3-4) unstable; urgency=low
 

Modified: trunk/libtext-roman-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libtext-roman-perl/debian/rules?rev=8103&op=diff
==============================================================================
--- trunk/libtext-roman-perl/debian/rules (original)
+++ trunk/libtext-roman-perl/debian/rules Tue Oct  9 00:43:35 2007
@@ -17,8 +17,8 @@
 	perl Makefile.PL INSTALLDIRS=vendor
 	touch configure-stamp
 
-build: configure-stamp build-stamp
-build-stamp: 
+build: build-stamp
+build-stamp: configure-stamp
 	$(checkdir)
 	$(MAKE)
 
@@ -31,7 +31,7 @@
 	  if [ ! -f Makefile ]; then \
 	    perl Makefile.PL INSTALLDIRS=vendor; \
 	  fi; \
-	  make realclean; \
+	  $(MAKE) realclean; \
 	fi
 	# And then, our stamps, temporary directories and files.
 	rm -fr configure-stamp build *~ debian/tmp debian/files debian/*~
@@ -40,7 +40,7 @@
 	true
 # Yup, that was just a stub
 
-binary-indep:	clean checkroot build
+binary-indep:	checkroot build
 	$(checkdir)
 	install -d $(tmpdir) $(debiandir) $(docdir)
 	$(MAKE) install PREFIX=$(CURDIR)/debian/tmp/usr




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