From d36b1d08483525fdcc909faca772231a2d78a29b Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Wed, 29 Jul 2009 14:21:50 -0700 Subject: [PATCH] Fix to allow parallel build (-j2), closes #535319 We have to strictly serialize building after configuring, (by making build-stamp depend on configure-stamp). --- debian/changelog | 3 ++- debian/rules | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) 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 Wed, 29 Jul 2009 12:32:41 -0700 + -- Carl Worth 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) -- 2.43.0