Thanks for the report Bastian.

I've made the change below which should fix this, and which I'll hand
over to Bdale to upload.

-Carl (who finally figured out the the Tags: pseudo-header only works in
the original bug report, not follow ups)

commit d36b1d08483525fdcc909faca772231a2d78a29b
Author: Carl Worth <cwo...@cworth.org>
Date:   Wed Jul 29 14:21:50 2009 -0700

    Fix to allow parallel build (-j2), closes #535319
    
    We have to strictly serialize building after configuring, (by
    making build-stamp depend on configure-stamp).

diff --git a/debian/changelog b/debian/changelog
index e7937ab..4cd8456 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,9 @@
 tar (1.22-1.2) UNRELEASED; urgency=low
 
   * Add Carl Worth as an uploader.
+  * Fix to allow parallel build (-j2), closes #535319
 
- -- Carl Worth <cwo...@cworth.org>  Wed, 29 Jul 2009 12:32:41 -0700
+ -- Carl Worth <cwo...@cworth.org>  Wed, 29 Jul 2009 14:04:18 -0700
 
 tar (1.22-1.1) unstable; urgency=low
 
diff --git a/debian/rules b/debian/rules
index 74bcc21..6a369a4 100755
--- a/debian/rules
+++ b/debian/rules
@@ -15,8 +15,8 @@ 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)
 

Attachment: signature.asc
Description: This is a digitally signed message part

Reply via email to