maint: fix configure.ac

Fix commit 1890a2a816.

	* configure.ac: Fix variable assignment.
This commit is contained in:
Akim Demaille
2012-01-26 21:37:15 +01:00
parent d115aad911
commit 36021b239d

View File

@@ -63,7 +63,7 @@ AC_ARG_ENABLE([gcc-warnings],
yes|no) ;; yes|no) ;;
*) AC_MSG_ERROR([invalid value for --gcc-warnings: $enable_gcc_warnings]);; *) AC_MSG_ERROR([invalid value for --gcc-warnings: $enable_gcc_warnings]);;
esac], esac],
[$enable_gcc_warnings=no]) [enable_gcc_warnings=no])
if test "$enable_gcc_warnings" = yes; then if test "$enable_gcc_warnings" = yes; then
gl_WARN_ADD([-Werror], [WERROR_CFLAGS]) gl_WARN_ADD([-Werror], [WERROR_CFLAGS])
AC_SUBST([WERROR_CFLAGS]) AC_SUBST([WERROR_CFLAGS])