Commit 087eeb1e authored by Jeff Trawick's avatar Jeff Trawick
Browse files

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
parent b7033f02
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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