summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbojan <bojan@13f79535-47bb-0310-9956-ffa450edef68>2011-05-10 03:45:42 +0000
committerbojan <bojan@13f79535-47bb-0310-9956-ffa450edef68>2011-05-10 03:45:42 +0000
commited13663fc9651fc37f6fdb84cc93b57590031d37 (patch)
tree33c1ba7e2a5b781fab1b3906f3adcdb698e9b19c
parentc5fde6f41f88085c05d0b5465ce110e5b81c06a7 (diff)
downloadlibapr-ed13663fc9651fc37f6fdb84cc93b57590031d37.tar.gz
Fix top_builddir in installed apr_rules.mk.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.4.x@1101301 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--CHANGES1
-rw-r--r--Makefile.in2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 6c00b1e55..0cf12d0cf 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,7 @@
-*- coding: utf-8 -*-
Changes for APR 1.4.5
+ *) Fix top_builddir in installed apr_rules.mk. [Bojan Smojver]
Changes for APR 1.4.4
diff --git a/Makefile.in b/Makefile.in
index 5dcb4bad3..9f04436b7 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -66,7 +66,7 @@ apr-config.out: $(APR_CONFIG)
# Create apr_rules.mk suitable for the install tree
build/apr_rules.out: build/apr_rules.mk
- sed 's,^\(apr_build.*=\).*$$,\1$(installbuilddir),' < build/apr_rules.mk > $@
+ sed -e 's,^\(apr_build.*=\).*$$,\1$(installbuilddir),' -e 's,^\(top_build.*=\).*$$,\1$(installbuilddir),' < build/apr_rules.mk > $@
install: $(TARGETS)
$(APR_MKDIR) $(DESTDIR)$(libdir) $(DESTDIR)$(bindir) $(DESTDIR)$(installbuilddir) \