diff options
author | Stefan Fritsch <sf@apache.org> | 2011-11-10 01:41:20 +0100 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2011-11-10 01:41:20 +0100 |
commit | 9209ff117f9d286b8836dca4f2ff19975003cb22 (patch) | |
tree | 128c341edc723e8f0846a7c408db444428710799 /Makefile.in | |
parent | mod_proxy_html: Add ProxyHTMLURLMap conditions to docs. (diff) | |
download | apache2-9209ff117f9d286b8836dca4f2ff19975003cb22.tar.xz apache2-9209ff117f9d286b8836dca4f2ff19975003cb22.zip |
Fix selection of loaded modules on AIX because its grep doesn't understand \< and \>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1200064 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 6297b27c23..ca5e806c7c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -60,7 +60,7 @@ install-conf: < $$i; \ for j in $(DSO_MODULES) "^EOL^"; do \ if test $$j != "^EOL^"; then \ - if echo "$(ENABLED_DSO_MODULES)"|$(EGREP) "\<$$j\>" > /dev/null ; then \ + if echo ",$(ENABLED_DSO_MODULES),"|$(EGREP) ",$$j," > /dev/null ; then \ loading_disabled=""; \ else \ loading_disabled="#"; \ |