single-quoting assignments to cache variables.
AC_ARG_WITH(foo,
[AS_HELP_STRING(--with-foo,
[use foo (default is no)])],
- ac_cv_use_foo=$withval,
- ac_cv_use_foo=no)
+ [ac_cv_use_foo=$withval],
+ [ac_cv_use_foo=no])
@end example
The second argument of @code{AS_HELP_STRING} is
AC_DEFUN([MY_ARG_WITH],
[AC_ARG_WITH([$1],
[AS_HELP_STRING([--with-$1], [use $1 (default is $2)])],
- ac_cv_use_$1=$withval,
- ac_cv_use_$1=$2)])
+ [ac_cv_use_$1=$withval],
+ [ac_cv_use_$1=$2])])
@end example
@end defmac