diff -r 584dc2e95e04 -r f3697e0783e2 common/autoconf/configure.ac --- a/common/autoconf/configure.ac Thu Sep 12 12:29:17 2013 -0700 +++ b/common/autoconf/configure.ac Tue Nov 05 17:33:48 2013 -0800 @@ -178,6 +178,9 @@ # ############################################################################### +# After we have toolchain, we can compile fixpath. It's needed by the lib checks. +BASIC_COMPILE_FIXPATH + LIB_SETUP_INIT LIB_SETUP_X11 LIB_SETUP_CUPS @@ -186,8 +189,6 @@ LIB_SETUP_MISC_LIBS LIB_SETUP_STATIC_LINK_LIBSTDCPP -# After we have toolchain and the paths to all libraries (needed by msys), we can compile the fixpath helper -BASIC_COMPILE_FIXPATH ############################################################################### # @@ -233,9 +234,15 @@ # We're messing a bit with internal autoconf variables to put the config.status # in the output directory instead of the current directory. CONFIG_STATUS="$OUTPUT_ROOT/config.status" + # Create the actual output files. Now the main work of configure is done. AC_OUTPUT +# Try to move the config.log file to the output directory. +if test -e ./config.log; then + $MV -f ./config.log "$OUTPUT_ROOT/config.log" 2> /dev/null +fi + # Make the compare script executable $CHMOD +x $OUTPUT_ROOT/compare.sh