summaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2001-07-30 04:21:48 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2001-07-30 04:21:48 +0000
commit1b76efc60e3e401c50fd19b8d7a70dd31183c0cc (patch)
treeb5abe570fb3dcdc7822ea65d0851ee2913c29978 /buildconf
parente9c2dcee9274cc608d1646aa1243eb82c0ae5de4 (diff)
downloadlibapr-1b76efc60e3e401c50fd19b8d7a70dd31183c0cc.tar.gz
Quickly parse the libtool.m4 file to use $(apr_builddir) instead
of $(top_builddir). This allows apr-util to use APR's build directory. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62058 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildconf b/buildconf
index c2a455aa7..e86bd9135 100755
--- a/buildconf
+++ b/buildconf
@@ -85,7 +85,7 @@ if [ ! -f $ltfile ]; then
fi
rm -f build/libtool.m4
-cp $ltfile build/libtool.m4
+cat $ltfile | sed -e 's/LIBTOOL=\(.*\)top_build/LIBTOOL=\1apr_build/' > build/libtool.m4
# This is just temporary until people's workspaces are cleared -- remove
# any old aclocal.m4 left over from prior build so it doesn't cause errors.