rbb 01/07/29 21:21:48
Modified: . buildconf Log: Quickly parse the libtool.m4 file to use $(apr_builddir) instead of $(top_builddir). This allows apr-util to use APR's build directory. Revision Changes Path 1.18 +1 -1 apr/buildconf Index: buildconf =================================================================== RCS file: /home/cvs/apr/buildconf,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- buildconf 2001/05/01 02:06:09 1.17 +++ buildconf 2001/07/30 04:21:48 1.18 @@ -85,7 +85,7 @@ 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.
