quote macros when undefining

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@6663 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1999-07-29 01:44:32 +00:00
parent b3ac3cb08e
commit 78dec73f96

View File

@@ -13,7 +13,7 @@ cache_val=no)])
if test "$cache_val" = yes; then if test "$cache_val" = yes; then
define(foo, translit(HAVE_$1_$2, [a-z ], [A-Z_])) define(foo, translit(HAVE_$1_$2, [a-z ], [A-Z_]))
AC_DEFINE(foo, 1, [Define if $1 has field $2.]) AC_DEFINE(foo, 1, [Define if $1 has field $2.])
undefine(foo) undefine([foo])
fi fi
undefine(cache_val) undefine([cache_val])
]) ])