Skip to content
Snippets Groups Projects
Commit ecefbb98 authored by Christian Engwer's avatar Christian Engwer
Browse files

* fix --enable-... parameers

credits to Elias Pipping

[[Imported from SVN: r5297]]
parent 27f995fb
Branches
Tags
No related merge requests found
......@@ -24,7 +24,7 @@ AC_DEFUN([DUNE_CHECK_ALL],[
AC_ARG_ENABLE(enabledist,
AC_HELP_STRING([--enable-dist],
[go into create-tarballs-mode [[default=no]]]),
[enabledist=$enable],
[enabledist=$enableval],
[enabledist=no]
)
AM_CONDITIONAL(MAKEDIST, test x$enabledist = xyes)
......
......@@ -6,7 +6,7 @@ AC_DEFUN([DUNE_CHECK_COMPILER],[
AC_ARG_ENABLE(compilercheck,
AC_HELP_STRING([--enable-compilercheck],
[check for supported compilers [[default=yes]]]),
[compilercheck=$enable],
[compilercheck=$enableval],
[compilercheck=yes]
)
......
......@@ -2,8 +2,8 @@ AC_DEFUN([GXX0X],[
AC_REQUIRE([AC_PROG_CXX])
AC_ARG_ENABLE(gxx0xcheck,
AC_HELP_STRING([--disable-gxx0xcheck],
[try to enabel c++0x feature for g++ [[default=yes]]]),
[gxx0xcheck=$enable],
[try to enable c++0x feature for g++ [[default=yes]]]),
[gxx0xcheck=$enableval],
[gxx0xcheck=yes])
if test "x$GXX" = xyes && test "x$gxx0xcheck" = xyes; then
AC_MSG_CHECKING([whether g++ accepts -std=c++0x])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment