From 09f24e3e65338474d0fdcb07ba406ec93c863246 Mon Sep 17 00:00:00 2001 From: Stefan Fritsch Date: Sun, 2 Dec 2012 22:25:20 +0000 Subject: [PATCH] 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 --- server/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 $?` > $@ -- 2.40.0