summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkim Demaille <demaille@gostai.com>2012-01-26 21:37:15 +0100
committerAkim Demaille <demaille@gostai.com>2012-01-26 21:37:15 +0100
commit36021b239d1d35e79f6f83076d130ff25166660c (patch)
tree8dcf1358353c6ffc1bc3c074e964dd616c83c55d
parentd115aad9112fb4e2fe1b268c9db7390732d39539 (diff)
downloadbison-36021b239d1d35e79f6f83076d130ff25166660c.tar.gz
maint: fix configure.ac
Fix commit 1890a2a816dab86c23cc1d0af8fac3986335deb7. * configure.ac: Fix variable assignment.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
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])