You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rj...@apache.org on 2010/10/08 22:08:03 UTC

svn commit: r1006000 - /apr/apr-util/branches/0.9.x/apu-config.in

Author: rjung
Date: Fri Oct  8 20:08:02 2010
New Revision: 1006000

URL: http://svn.apache.org/viewvc?rev=1006000&view=rev
Log:
apu-config.in: Fix fugly sed to export -lexpat correctly.

Backport of r1002648 from 1.3.x.

Modified:
    apr/apr-util/branches/0.9.x/apu-config.in

Modified: apr/apr-util/branches/0.9.x/apu-config.in
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/0.9.x/apu-config.in?rev=1006000&r1=1005999&r2=1006000&view=diff
==============================================================================
--- apr/apr-util/branches/0.9.x/apu-config.in (original)
+++ apr/apr-util/branches/0.9.x/apu-config.in Fri Oct  8 20:08:02 2010
@@ -80,7 +80,7 @@ fi
 if test "$location" = "installed"; then
     LA_FILE="$libdir/lib${APRUTIL_LIBNAME}.la"
 
-    LIBS=`echo "$LIBS" | sed -e "s $APU_BUILD_DIR/xml/expat $prefix g" -e "s $prefix/lib/libexpat.la -lexpat g"`
+    LIBS=`echo "$LIBS" | sed -e "s $APU_BUILD_DIR/xml/expat $prefix g" -e "s $prefix/libexpat.la -lexpat 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