Commit 33855978 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 506ef8f2
...@@ -99,6 +99,7 @@ ifneq ($(ARCH_OS),hurd) ...@@ -99,6 +99,7 @@ ifneq ($(ARCH_OS),hurd)
@if [ ! -d /proc/self ]; then echo "/proc IS NEEDED" 1>&2; exit 1; fi @if [ ! -d /proc/self ]; then echo "/proc IS NEEDED" 1>&2; exit 1; fi
endif endif
@cp debian/control debian/control.sav
( \ ( \
CC="$(MYSQL_BUILD_CC)" \ CC="$(MYSQL_BUILD_CC)" \
CXX="$(MYSQL_BUILD_CXX)" \ CXX="$(MYSQL_BUILD_CXX)" \
...@@ -152,6 +153,8 @@ endif ...@@ -152,6 +153,8 @@ endif
$(MYSQL_BUILD_OPTS) \ $(MYSQL_BUILD_OPTS) \
) )
@mv debian/control.sav debian/control
touch configure-stamp 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