diff options
author | Jeff Trawick <trawick@apache.org> | 2000-12-05 13:45:27 +0100 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2000-12-05 13:45:27 +0100 |
commit | 2515b30ac16df370e98327baaa84773057036b52 (patch) | |
tree | 2b23a61f28367cd85687771613e027609b4db235 /build/rules.mk | |
parent | En route to httpd-2.0/modules/... in their appropriate places. (diff) | |
download | apache2-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.mk | 3 |
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 \ |