summaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2001-07-30 04:21:48 +0000
committerRyan Bloom <rbb@apache.org>2001-07-30 04:21:48 +0000
commit0cc9dd0ae506451f4a33d691742b468f661e4011 (patch)
treeb5abe570fb3dcdc7822ea65d0851ee2913c29978 /buildconf
parentfceedec77c388d784f4a8969ba158fd2bb93c9ca (diff)
downloadapr-0cc9dd0ae506451f4a33d691742b468f661e4011.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: https://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.