Make bash_completion installation default to off.

This commit is contained in:
Keith Winstein
2012-05-23 06:21:04 -04:00
parent a7818c612c
commit 6594ae35e9
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -153,9 +153,9 @@ AC_ARG_ENABLE([ufw],
AM_CONDITIONAL([INSTALL_UFW], [test x"$install_ufw" != xno]) AM_CONDITIONAL([INSTALL_UFW], [test x"$install_ufw" != xno])
AC_ARG_ENABLE([completion], AC_ARG_ENABLE([completion],
[AS_HELP_STRING([--enable-completion], [Install bash_completion rule @<:@yes@:>@])], [AS_HELP_STRING([--enable-completion], [Install bash_completion rule @<:@no@:>@])],
[install_completion="$enableval"], [install_completion="$enableval"],
[install_completion="yes"]) [install_completion="no"])
AM_CONDITIONAL([INSTALL_COMPLETION], [test x"$install_completion" != xno]) AM_CONDITIONAL([INSTALL_COMPLETION], [test x"$install_completion" != xno])
# Checks for libraries. # Checks for libraries.
+1
View File
@@ -21,4 +21,5 @@ override_dh_auto_configure:
dh_auto_configure -- \ dh_auto_configure -- \
--disable-silent-rules \ --disable-silent-rules \
--enable-ufw \ --enable-ufw \
--enable-completion \
--enable-compile-warnings=error --enable-compile-warnings=error