summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2011-11-10 00:41:20 +0000
committerStefan Fritsch <sf@apache.org>2011-11-10 00:41:20 +0000
commit9209ff117f9d286b8836dca4f2ff19975003cb22 (patch)
tree128c341edc723e8f0846a7c408db444428710799 /Makefile.in
parentff0b37a45b63a6a7d7380e8eca2bc87f8773806f (diff)
downloadhttpd-9209ff117f9d286b8836dca4f2ff19975003cb22.tar.gz
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.in2
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="#"; \