From f05339433c23e120ed2c1ee54942096236f05c63 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sun, 27 Oct 2013 14:32:37 +0000 Subject: [PATCH] debian: always run configure Organization: Straylight/Edgeware From: Richard Kettlewell Prevents trouble if configure has been run but with non-Debiany arguments. --- debian/rules | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/debian/rules b/debian/rules index 481b2ae..ea9a54c 100755 --- a/debian/rules +++ b/debian/rules @@ -69,13 +69,7 @@ build: echo ./autogen.sh;\ ./autogen.sh;\ fi - @set -e;if test ! -f config.status; then \ - echo ./configure ${CONFIGURE} ${CONFIGURE_EXTRA};\ - ./configure ${CONFIGURE} ${CONFIGURE_EXTRA};\ - else\ - echo ./config.status;\ - ./config.status;\ - fi + ./configure ${CONFIGURE} ${CONFIGURE_EXTRA} $(MAKE) SENDMAIL=${SENDMAIL} ${PARALLEL} pkg-disorder: build -- [mdw]