From: Akim Demaille Date: Thu, 26 Jan 2012 20:37:15 +0000 (+0100) Subject: maint: fix configure.ac X-Git-Tag: v2.7.90~548 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/36021b239d1d35e79f6f83076d130ff25166660c?ds=sidebyside maint: fix configure.ac Fix commit 1890a2a816dab86c23cc1d0af8fac3986335deb7. * configure.ac: Fix variable assignment. --- diff --git a/configure.ac b/configure.ac index 48d145d8..80c2e99c 100644 --- a/configure.ac +++ b/configure.ac @@ -63,7 +63,7 @@ AC_ARG_ENABLE([gcc-warnings], yes|no) ;; *) AC_MSG_ERROR([invalid value for --gcc-warnings: $enable_gcc_warnings]);; esac], - [$enable_gcc_warnings=no]) + [enable_gcc_warnings=no]) if test "$enable_gcc_warnings" = yes; then gl_WARN_ADD([-Werror], [WERROR_CFLAGS]) AC_SUBST([WERROR_CFLAGS])