]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
don't run 'make clean' if --no-create is specified
authorMark Andrews <marka@isc.org>
Thu, 17 Mar 2016 21:28:21 +0000 (08:28 +1100)
committerMark Andrews <marka@isc.org>
Thu, 17 Mar 2016 21:30:28 +0000 (08:30 +1100)
(cherry picked from commit 6e3839e1bbc9c62d09be4451a97f2c414d3f65f6)

configure
configure.in

index dcca31b07ed67c78bb6818318e715ccd16fc87a2..64f61a83ff17ec4f6f246a316c12880fa3c52a4c 100755 (executable)
--- a/configure
+++ b/configure
@@ -1734,13 +1734,13 @@ Optional Packages:
                               (Required to use MySQL with DLZ)
   --with-dlz-bdb=PATH   Build with Berkeley DB DLZ driver yes|no|path.
                               (Required to use Berkeley DB with DLZ)
-  --with-dlz-filesystem=PATH   Build with filesystem DLZ driver yes|no.
+  --with-dlz-filesystem=ARG    Build with filesystem DLZ driver yes|no.
                               (Required to use file system driver with DLZ)
   --with-dlz-ldap=PATH   Build with LDAP DLZ driver yes|no|path.
                               (Required to use LDAP with DLZ)
   --with-dlz-odbc=PATH   Build with ODBC DLZ driver yes|no|path.
                               (Required to use ODBC with DLZ)
-  --with-dlz-stub=PATH   Build with stub DLZ driver yes|no.
+  --with-dlz-stub=ARG    Build with stub DLZ driver yes|no.
                               (Required to use stub driver with DLZ)
   --with-make-clean      Run "make clean" at end of configure [yes|no].
 
 
 case "$make_clean" in
 yes)
-       make clean
+       if test "$no_create" != "yes"
+       then
+               make clean
+       fi
        ;;
 esac
 
index b705bc4f2ef9eca2db91c585a694d95329c79dba..6975e3a43da1ccb6a5ecf3bf50ca2d1f1df7cf99 100644 (file)
@@ -4201,7 +4201,10 @@ AC_ARG_WITH(make-clean,
     make_clean="$withval", make_clean="yes")
 case "$make_clean" in
 yes)
-       make clean
+       if test "$no_create" != "yes"
+       then
+               make clean
+       fi
        ;;
 esac