summaryrefslogtreecommitdiffstats
path: root/build/rules.mk
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2000-12-05 13:45:27 +0100
committerJeff Trawick <trawick@apache.org>2000-12-05 13:45:27 +0100
commit2515b30ac16df370e98327baaa84773057036b52 (patch)
tree2b23a61f28367cd85687771613e027609b4db235 /build/rules.mk
parent En route to httpd-2.0/modules/... in their appropriate places. (diff)
downloadapache2-2515b30ac16df370e98327baaa84773057036b52.tar.xz
apache2-2515b30ac16df370e98327baaa84773057036b52.zip
Get make distclean working again. The replaced egrep-style regexp does
not work as-is with "GNU sed version 3.02". git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87203 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/rules.mk')
-rw-r--r--build/rules.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/rules.mk b/build/rules.mk
index 24a0f38e3e..1edc595016 100644
--- a/build/rules.mk
+++ b/build/rules.mk
@@ -150,7 +150,8 @@ distclean-recursive clean-recursive depend-recursive all-recursive install-recur
for d in `find . -name Makefile`; do \
i=`dirname "$$d"`; \
target="$$otarget"; \
- in_apr=`echo $$i|sed 's%^.*apr(-util)?/.*$$%ignore_apr_subdirs%'`; \
+ in_apr=`echo $$i|sed 's%^.*apr/.*$$%ignore_apr_subdirs%'`; \
+ in_apr=`echo $$in_apr|sed 's%^.*apr-util/.*$$%ignore_apr_subdirs%'`; \
if test "x$$in_apr" != "xignore_apr_subdirs"; then \
echo "Making $$target in $$i"; \
if test "$$i" = "."; then \