Protect the control file from running ./configure again


debian/rules:
  Protect the control file from running ./configure again
This commit is contained in:
unknown 2007-04-19 23:43:57 +02:00
parent 506ef8f2a0
commit 33855978d4

3
debian/rules vendored
View file

@ -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