]> git.cworth.org Git - tar/commitdiff
Fix to allow parallel build (-j2), closes #535319
authorCarl Worth <cworth@cworth.org>
Wed, 29 Jul 2009 21:21:50 +0000 (14:21 -0700)
committerCarl Worth <cworth@cworth.org>
Wed, 29 Jul 2009 21:21:50 +0000 (14:21 -0700)
We have to strictly serialize building after configuring, (by
making build-stamp depend on configure-stamp).

debian/changelog
debian/rules

index e7937abd4abb3b53d26f157ae938b4bc5a17a661..4cd8456517fc83d07a77b489ade3e4fc715ee9de 100644 (file)
@@ -1,8 +1,9 @@
 tar (1.22-1.2) UNRELEASED; urgency=low
 
   * Add Carl Worth as an uploader.
 tar (1.22-1.2) UNRELEASED; urgency=low
 
   * Add Carl Worth as an uploader.
+  * Fix to allow parallel build (-j2), closes #535319
 
 
- -- Carl Worth <cworth@cworth.org>  Wed, 29 Jul 2009 12:32:41 -0700
+ -- Carl Worth <cworth@cworth.org>  Wed, 29 Jul 2009 14:04:18 -0700
 
 tar (1.22-1.1) unstable; urgency=low
 
 
 tar (1.22-1.1) unstable; urgency=low
 
index 74bcc21c0c836e2802e171540f0468d17ba29a09..6a369a4127c82ee60828e205cd5f618795ee26b1 100755 (executable)
@@ -15,8 +15,8 @@ configure-stamp:
                ./configure --prefix=/usr --libexecdir=/usr/sbin $(CONFARGS)
        touch configure-stamp
 
                ./configure --prefix=/usr --libexecdir=/usr/sbin $(CONFARGS)
        touch configure-stamp
 
-build: configure-stamp build-stamp
-build-stamp:
+build: build-stamp
+build-stamp: configure-stamp
        dh_testdir
        RSH="/usr/bin/rsh" CFLAGS="-O2 -g -Wall -fno-gnu89-inline" $(MAKE)
 
        dh_testdir
        RSH="/usr/bin/rsh" CFLAGS="-O2 -g -Wall -fno-gnu89-inline" $(MAKE)