]> 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:28:21 +0000 (08:28 +1100)
configure
configure.in

index 43e2389b35c571f57f3e1f9924409e7d8f588d15..5483289f0fae7bdf8fd1722adea2b06f9b7c1d31 100755 (executable)
--- a/configure
+++ b/configure
@@ -1765,13 +1765,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 4d5199ef752e94ea58bba7981e03b8385f75fcdd..506a49e58a8d6043d8b3f2e16b291566332053b1 100644 (file)
@@ -4937,7 +4937,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