Commit 35384152 authored by unknown's avatar unknown

rules:

  Protect the control file from running ./configure again


debian/rules:
  Protect the control file from running ./configure again
parent a4099db8
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment