1
0
mirror of https://github.com/apache/httpd.git synced 2026-01-26 19:01:35 +03:00

Allow module names to be hyphenated in the --enable-mods-shared

argument.  Previously, we passed through a user-specified hyphen into
the name of the shell variable, yielding an invalid variable name.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88956 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jeff Trawick
2001-04-27 18:29:11 +00:00
parent 464de0abc1
commit d685f0a8e5

View File

@@ -372,6 +372,7 @@ AC_DEFUN(APACHE_ENABLE_MODULES,[
module_selection=$i
module_default=shared
else
i=`echo $i | sed 's/-/_/g'`
eval "enable_$i=shared"
fi
done