]> granicus.if.org Git - apache/commitdiff
Get make distclean working again. The replaced egrep-style regexp does
authorJeff Trawick <trawick@apache.org>
Tue, 5 Dec 2000 12:45:27 +0000 (12:45 +0000)
committerJeff Trawick <trawick@apache.org>
Tue, 5 Dec 2000 12:45:27 +0000 (12:45 +0000)
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

build/rules.mk

index 24a0f38e3e5fa9dfc252244f32e286fa3e8968e8..1edc59501671cdd491004a8b1738a680787298c5 100644 (file)
@@ -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 \