diff options
author | Stefan Fritsch <sf@apache.org> | 2012-12-02 23:25:20 +0100 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2012-12-02 23:25:20 +0100 |
commit | 09f24e3e65338474d0fdcb07ba406ec93c863246 (patch) | |
tree | 6a89244d5d35e4db0704091bfae41a3e1da6ca72 /server/Makefile.in | |
parent | Sort error message for ServerTokens by increasing verbosity. Add missing 'OS' (diff) | |
download | apache2-09f24e3e65338474d0fdcb07ba406ec93c863246.tar.xz apache2-09f24e3e65338474d0fdcb07ba406ec93c863246.zip |
Avoid processing some files twice if APR_INCLUDEDIR and
APU_INCLUDEDIR containin the same path but differing in
doubled slashes.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1416278 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/Makefile.in')
-rw-r--r-- | server/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/Makefile.in b/server/Makefile.in index 813b411c10..c2a36fd9ad 100644 --- a/server/Makefile.in +++ b/server/Makefile.in @@ -70,7 +70,7 @@ export_files: for dir in $(EXPORT_DIRS_APR); do \ ls $$dir/ap[ru].h $$dir/ap[ru]_*.h 2>/dev/null; \ done; \ - ) | sort -u > $@ + ) | sed -e s,//,/,g | sort -u > $@ exports.c: export_files $(AWK) -f $(top_srcdir)/build/make_exports.awk `cat $?` > $@ |