Translate dot to underscore in variable names.
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -19,8 +19,8 @@ dnl | ... | @@ -19,8 +19,8 @@ dnl |
19 | dnl MU_ENABLE_SUPPORT(feature, [action-if-true], [action-if-false]) | 19 | dnl MU_ENABLE_SUPPORT(feature, [action-if-true], [action-if-false]) |
20 | 20 | ||
21 | AC_DEFUN([MU_ENABLE_SUPPORT], [ | 21 | AC_DEFUN([MU_ENABLE_SUPPORT], [ |
22 | pushdef([mu_upcase],translit($1,[a-z],[A-Z])) | 22 | pushdef([mu_upcase],translit($1,[a-z-],[A-Z_])) |
23 | pushdef([mu_cache_var],[mu_cv_enable_]$1) | 23 | pushdef([mu_cache_var],[mu_cv_enable_]translit($1,[-],[_])) |
24 | 24 | ||
25 | AC_ARG_ENABLE($1, | 25 | AC_ARG_ENABLE($1, |
26 | AC_HELP_STRING([--disable-]$1, | 26 | AC_HELP_STRING([--disable-]$1, | ... | ... |
-
Please register or sign in to post a comment