Compare commits

...

1 Commits

Author SHA1 Message Date
Ondřej Surý
06197d1023 Remove legacy option to run 'make clean' as part of configure 2018-12-18 15:17:20 +01:00
2 changed files with 0 additions and 48 deletions

27
configure vendored
View File

@@ -940,7 +940,6 @@ with_dlz_filesystem
with_dlz_ldap
with_dlz_odbc
with_dlz_stub
with_make_clean
enable_full_report
'
ac_precious_vars='build_alias
@@ -1676,7 +1675,6 @@ Optional Packages:
to use ODBC with DLZ)
--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]
Some influential environment variables:
CC C compiler command
@@ -23849,31 +23847,6 @@ $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
fi
#
# Now that the Makefiles exist we can ensure that everything is rebuilt.
#
# Check whether --with-make-clean was given.
if test "${with_make_clean+set}" = set; then :
withval=$with_make_clean; make_clean="$withval"
else
make_clean="yes"
fi
case "$make_clean" in
yes)
if test "yes" != "$no_create"
then
if test "yes" = "$silent"
then
make clean > /dev/null
else
make clean
fi
fi
;;
esac
# Check whether --enable-full-report was given.
if test "${enable_full_report+set}" = set; then :
enableval=$enable_full_report;

View File

@@ -3086,27 +3086,6 @@ AC_CONFIG_FILES([
AC_OUTPUT
#
# Now that the Makefiles exist we can ensure that everything is rebuilt.
#
AC_ARG_WITH(make-clean,
AS_HELP_STRING([--with-make-clean],
[run "make clean" at end of configure [yes|no]]),
make_clean="$withval", make_clean="yes")
case "$make_clean" in
yes)
if test "yes" != "$no_create"
then
if test "yes" = "$silent"
then
make clean > /dev/null
else
make clean
fi
fi
;;
esac
AC_ARG_ENABLE(full-report,
AS_HELP_STRING([--enable-full-report],
[report values of all configure options]))