diff options
author | unknown <mtaylor@blade09.mysql.com> | 2007-04-19 23:43:57 +0200 |
---|---|---|
committer | unknown <mtaylor@blade09.mysql.com> | 2007-04-19 23:43:57 +0200 |
commit | 33855978d47915242239b0478f54045c4c567a19 (patch) | |
tree | 4829d61f36e55437c66fee27fe4e366133f464f8 /debian | |
parent | 506ef8f2a021f376368dedc65f33e8a9edc4fb54 (diff) | |
download | mariadb-git-33855978d47915242239b0478f54045c4c567a19.tar.gz |
rules:
Protect the control file from running ./configure again
debian/rules:
Protect the control file from running ./configure again
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/rules | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules index 8a10e0e6762..5bc73f5ebad 100755 --- a/debian/rules +++ b/debian/rules @@ -99,6 +99,7 @@ ifneq ($(ARCH_OS),hurd) @if [ ! -d /proc/self ]; then echo "/proc IS NEEDED" 1>&2; exit 1; fi endif + @cp debian/control debian/control.sav ( \ CC="$(MYSQL_BUILD_CC)" \ CXX="$(MYSQL_BUILD_CXX)" \ @@ -152,6 +153,8 @@ endif $(MYSQL_BUILD_OPTS) \ ) + @mv debian/control.sav debian/control + touch configure-stamp |