summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorgstein <gstein@13f79535-47bb-0310-9956-ffa450edef68>2000-12-31 13:04:01 +0000
committergstein <gstein@13f79535-47bb-0310-9956-ffa450edef68>2000-12-31 13:04:01 +0000
commite10691e4fac14917a9c2a2775debe1e4b7e25bae (patch)
tree5e2a0400e2e7f6e05479434f8db1c3ae49f98ba1 /Makefile.in
parent704130beb5a21f66ae60d3528cf433fe3abc63e2 (diff)
downloadlibapr-e10691e4fac14917a9c2a2775debe1e4b7e25bae.tar.gz
prevent duplicate exports. when srcdir is "." (or an absolute path to that
same dir), then two copies of the include headers were processed. Instead, just process the true source dir, rather than those source headers *and* the headers created during the config/build. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60994 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index c7df4215c..d7b1be310 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -118,16 +118,16 @@ delete-exports:
$(TARGET_EXPORTS):
if test -z "$(srcdir)"; then \
- $(AWK) -f $(srcdir)helpers/make_export.awk include/*.h > $@ ; \
+ $(AWK) -f helpers/make_export.awk include/*.h > $@ ; \
else \
- $(AWK) -f $(srcdir)helpers/make_export.awk include/*.h $(srcdir)include/*.h > $@ ; \
+ $(AWK) -f $(srcdir)helpers/make_export.awk $(srcdir)include/*.h > $@ ; \
fi
docs:
if test -z "$(srcdir)"; then \
- $(srcdir)helpers/scandoc -i$(srcdir)helpers/default.pl -p./docs/ ./include/*.h; \
+ helpers/scandoc -ihelpers/default.pl -p./docs/ ./include/*.h; \
else \
- $(srcdir)helpers/scandoc -i$(srcdir)helpers/default.pl -p./docs/ ./include/*.h $(srcdir)include/*.h; \
+ $(srcdir)helpers/scandoc -i$(srcdir)helpers/default.pl -p./docs/ $(srcdir)include/*.h; \
fi
test: $(LIBAPR)