diff options
author | Stephane Glondu <steph@glondu.net> | 2008-08-08 15:29:35 +0200 |
---|---|---|
committer | Stephane Glondu <steph@glondu.net> | 2008-08-08 15:42:41 +0200 |
commit | 280b58b25462cd9f8e33f96ff76e84cf22eb465c (patch) | |
tree | c99b7b8a18b2a53c20cd3f531d9a292cd172264d /debian/rules | |
parent | 9fd4621dcafc03b56c348a0342b2d172c065121d (diff) |
Move patch-stamp as a prerequisite of configure-stamp
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/rules b/debian/rules index 8075e719..e50ad147 100755 --- a/debian/rules +++ b/debian/rules @@ -21,7 +21,7 @@ CONFIGUREOPTS := --arch Linux --prefix /usr --mandir /usr/share/man \ --with-doc no configure: configure-stamp -configure-stamp: +configure-stamp: patch-stamp dh_testdir # git doesn't handle empty directories, so we create them here -mkdir bin @@ -34,7 +34,7 @@ configure-stamp: touch configure-stamp build: build-stamp -build-stamp: patch-stamp configure-stamp +build-stamp: configure-stamp dh_testdir if grep -q BEST=opt config/Makefile; \ then \ |