[[[ * build/ac-macros/aprutil.m4: Fix the script to actually retrieve, test and set the SVN_APRUTIL_PREFIX output variable. ]]] Index: build/ac-macros/aprutil.m4 =================================================================== --- build/ac-macros/aprutil.m4 (revision 33392) +++ build/ac-macros/aprutil.m4 (working copy) @@ -72,6 +72,11 @@ AC_MSG_ERROR([apu-config --includes failed]) fi + SVN_APRUTIL_PREFIX="`$apu_config --prefix`" + if test $? -ne 0; then + AC_MSG_ERROR([apu-config --prefix failed]) + fi + dnl When APR stores the dependent libs in the .la file, we don't need dnl --libs. SVN_APRUTIL_LIBS="`$apu_config --link-libtool --libs`"