summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2002-11-04 17:32:42 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2002-11-04 17:32:42 +0000
commit28e65c57af7809131ed45a579d5842d078710cde (patch)
tree164f86f41430c97fa0af05992b48dff9b21b5804
parente911e9546240c128f1dcf33f1a6abda7e223a182 (diff)
downloadmailutils-28e65c57af7809131ed45a579d5842d078710cde.tar.gz
mailutils-28e65c57af7809131ed45a579d5842d078710cde.tar.bz2
Translate dot to underscore in variable names.
-rw-r--r--m4/enable.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/enable.m4 b/m4/enable.m4
index 87596443c..67c209767 100644
--- a/m4/enable.m4
+++ b/m4/enable.m4
@@ -19,8 +19,8 @@ dnl
dnl MU_ENABLE_SUPPORT(feature, [action-if-true], [action-if-false])
AC_DEFUN([MU_ENABLE_SUPPORT], [
- pushdef([mu_upcase],translit($1,[a-z],[A-Z]))
- pushdef([mu_cache_var],[mu_cv_enable_]$1)
+ pushdef([mu_upcase],translit($1,[a-z-],[A-Z_]))
+ pushdef([mu_cache_var],[mu_cv_enable_]translit($1,[-],[_]))
AC_ARG_ENABLE($1,
AC_HELP_STRING([--disable-]$1,

Return to:

Send suggestions and report system problems to the System administrator.