summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorGreg Stein <gstein@apache.org>2000-12-31 13:04:01 +0000
committerGreg Stein <gstein@apache.org>2000-12-31 13:04:01 +0000
commitd6ae25450e43affbe574d4612af5df4e1de2757c (patch)
tree5e2a0400e2e7f6e05479434f8db1c3ae49f98ba1 /Makefile.in
parent45753b9f856d6be6f0edc7e893bb702ffd2ad834 (diff)
downloadapr-d6ae25450e43affbe574d4612af5df4e1de2757c.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: https://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)