From f248be803d7c329c7720fc12a522f89a99f5ce6d 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 813b411c10d..c2a36fd9ad2 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.47.3