[Pkg-voip-commits] r4993 - in /iax/trunk/debian: changelog rules

jblache at alioth.debian.org jblache at alioth.debian.org
Sun Dec 2 11:16:30 UTC 2007


Author: jblache
Date: Sun Dec  2 11:16:30 2007
New Revision: 4993

URL: http://svn.debian.org/wsvn/pkg-voip/?sc=1&rev=4993
Log:
Fix parallel builds.

Modified:
    iax/trunk/debian/changelog
    iax/trunk/debian/rules

Modified: iax/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-voip/iax/trunk/debian/changelog?rev=4993&op=diff
==============================================================================
--- iax/trunk/debian/changelog (original)
+++ iax/trunk/debian/changelog Sun Dec  2 11:16:30 2007
@@ -1,11 +1,14 @@
-iax (0.2.2-7) UNRELEASED; urgency=low
+iax (0.2.2-7) unstable; urgency=low
 
-  * NOT RELEASED YET
-
+  [ Kilian Krause ]
   * Add dpkg-dev (>= 1.13.19) to Build-Depends for ${binary:Version}
   * Add Homepage field as added in dpkg-dev 1.14.6.
 
- -- Kilian Krause <kilian at debian.org>  Sat, 22 Sep 2007 12:08:46 +0200
+  [ Julien BLACHE ]
+  * debian/rules:
+    + Fix parallel builds.
+
+ -- Julien BLACHE <jblache at debian.org>  Sun, 02 Dec 2007 12:15:44 +0100
 
 iax (0.2.2-6) unstable; urgency=low
 

Modified: iax/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-voip/iax/trunk/debian/rules?rev=4993&op=diff
==============================================================================
--- iax/trunk/debian/rules (original)
+++ iax/trunk/debian/rules Sun Dec  2 11:16:30 2007
@@ -40,14 +40,17 @@
 	ln -s /usr/share/misc/config.sub
 	touch autotools-stamp
 
-config.status: autotools-stamp configure
+configure: configure-stamp
+configure-stamp: patch-stamp autotools-stamp
 	dh_testdir
 	# Add here commands to configure the package.
 	./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \
 		--prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
 
+	touch configure-stamp
+
 build: build-stamp
-build-stamp: patch-stamp config.status
+build-stamp: configure-stamp
 	dh_testdir
 
 	# Add here commands to compile the package.
@@ -59,7 +62,7 @@
 real-clean:
 	dh_testdir
 	dh_testroot
-	rm -f build-stamp autotools-stamp
+	rm -f build-stamp autotools-stamp configure-stamp
 
 	# Add here commands to clean up after the build process.
 	[ ! -f Makefile ] || $(MAKE) distclean




More information about the Pkg-voip-commits mailing list