You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bo...@apache.org on 2011/05/10 05:45:43 UTC

svn commit: r1101301 - in /apr/apr/branches/1.4.x: CHANGES Makefile.in

Author: bojan
Date: Tue May 10 03:45:42 2011
New Revision: 1101301

URL: http://svn.apache.org/viewvc?rev=1101301&view=rev
Log:
Fix top_builddir in installed apr_rules.mk.

Modified:
    apr/apr/branches/1.4.x/CHANGES
    apr/apr/branches/1.4.x/Makefile.in

Modified: apr/apr/branches/1.4.x/CHANGES
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.4.x/CHANGES?rev=1101301&r1=1101300&r2=1101301&view=diff
==============================================================================
--- apr/apr/branches/1.4.x/CHANGES [utf-8] (original)
+++ apr/apr/branches/1.4.x/CHANGES [utf-8] Tue May 10 03:45:42 2011
@@ -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
 

Modified: apr/apr/branches/1.4.x/Makefile.in
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.4.x/Makefile.in?rev=1101301&r1=1101300&r2=1101301&view=diff
==============================================================================
--- apr/apr/branches/1.4.x/Makefile.in (original)
+++ apr/apr/branches/1.4.x/Makefile.in Tue May 10 03:45:42 2011
@@ -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) \