]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
2868. [cleanup] Run "make clean" at the end of configure to ensure
authorMark Andrews <marka@isc.org>
Thu, 18 Mar 2010 13:28:32 +0000 (13:28 +0000)
committerMark Andrews <marka@isc.org>
Thu, 18 Mar 2010 13:28:32 +0000 (13:28 +0000)
                        any changes made by configure are integrated.
                        Use --with-make-clean=no to disable.  [RT #20994]

CHANGES
configure.in

diff --git a/CHANGES b/CHANGES
index 2dc02008e9627d9951269e491e8e77315f7bc9d4..0a50cfc42ed88e84826e6151854d11a22625958e 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,7 @@
+2868.  [cleanup]       Run "make clean" at the end of configure to ensure
+                       any changes made by configure are integrated.
+                       Use --with-make-clean=no to disable.  [RT #20994]
+
 2867.  [bug]           Don't set GSS_C_SEQUENCE_FLAG as Windows DNS servers
                        don't like it.  [RT #20986]
 
index c36f43992d46425562b148012da54df9b8b8d7e6..42fe5a712867c25fee14025971809ca2ffd99d0d 100644 (file)
@@ -18,7 +18,7 @@ AC_DIVERT_PUSH(1)dnl
 esyscmd([sed "s/^/# /" COPYRIGHT])dnl
 AC_DIVERT_POP()dnl
 
-AC_REVISION($Revision: 1.489 $)
+AC_REVISION($Revision: 1.490 $)
 
 AC_INIT(lib/dns/name.c)
 AC_PREREQ(2.59)
@@ -3283,6 +3283,18 @@ AC_CONFIG_FILES([
 
 AC_OUTPUT
 
+#
+# Now that the Makefiles exist we can ensure that everything is rebuilt.
+#
+AC_ARG_WITH(make-clean,
+[  --with-make-clean      Run "make clean" at end of configure [[yes|no]].],
+    make_clean="$withval", make_clean="yes")
+case "$make_clean" in
+yes)
+       make clean
+       ;;
+esac
+
 if test "X$USE_OPENSSL" = "X"; then
 cat << \EOF                                                             
 BIND is being built without OpenSSL. This means it will not have DNSSEC support.