Mercurial > pidgin.yaz
changeset 22580:d75346b9b29b
If the default setting is enabled for options to ./configure, the help
string should be --disable-option
author | Stu Tomlinson <stu@nosnilmot.com> |
---|---|
date | Mon, 31 Mar 2008 14:25:26 +0000 |
parents | 82b7d38a3687 |
children | 4fe5f8839f56 |
files | configure.ac |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/configure.ac Mon Mar 31 07:45:21 2008 +0000 +++ b/configure.ac Mon Mar 31 14:25:26 2008 +0000 @@ -2146,14 +2146,14 @@ dnl ####################################################################### dnl # Disable pixmap installation dnl ####################################################################### -AC_ARG_ENABLE(pixmaps-install, AC_HELP_STRING([--enable-pixmaps-install], [enable installation of pixmap files]), enable_pixmaps="$enableval", enable_pixmaps=yes) +AC_ARG_ENABLE(pixmaps-install, AC_HELP_STRING([--disable-pixmaps-install], [disable installation of pixmap files]), enable_pixmaps="$enableval", enable_pixmaps=yes) AM_CONDITIONAL(INSTALL_PIXMAPS, test "x$enable_pixmaps" = "xyes") dnl ####################################################################### dnl # Disable installation of translation files dnl ####################################################################### -AC_ARG_ENABLE(nls, AC_HELP_STRING([--enable-nls], [enable installation of translation files]), enable_i18n="$enableval", enable_i18n=yes) +AC_ARG_ENABLE(nls, AC_HELP_STRING([--disable-nls], [disable installation of translation files]), enable_i18n="$enableval", enable_i18n=yes) AM_CONDITIONAL(INSTALL_I18N, test "x$enable_i18n" = "xyes")