wsanchez 2002/09/24 21:56:06
Modified: . apu-config.in
Log:
Don't search $prefix/lib on account of headers living in xml/expat/lib in the
source tree.
Revision Changes Path
1.20 +3 -3 apr-util/apu-config.in
Index: apu-config.in
===================================================================
RCS file: /home/cvs/apr-util/apu-config.in,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- apu-config.in 25 Sep 2002 04:38:15 -0000 1.19
+++ apu-config.in 25 Sep 2002 04:56:06 -0000 1.20
@@ -125,9 +125,9 @@
if test "$location" = "installed"; then
LA_FILE="$libdir/lib${APRUTIL_LIBNAME}.la"
- LIBS=`echo "$LIBS" | sed "s $APU_BUILD_DIR/xml/expat $prefix g"`
- LDFLAGS=`echo "$LDFLAGS" | sed "s $APU_BUILD_DIR/xml/expat $prefix g"`
- INCLUDES=`echo "$INCLUDES" | sed "s $APU_BUILD_DIR/xml/expat $prefix g"`
+ LIBS=`echo "$LIBS" | sed -e "s $APU_BUILD_DIR/xml/expat $prefix
g"`
+ LDFLAGS=`echo "$LDFLAGS" | sed -e "s $APU_BUILD_DIR/xml/expat $prefix
g"`
+ INCLUDES=`echo "$INCLUDES" | sed -e "s $APU_BUILD_DIR/xml/expat $prefix
g" -e "s -I$prefix/lib g"`
else
LA_FILE="$thisdir/lib${APRUTIL_LIBNAME}.la"
fi