< prev index next >

common/autoconf/configure.ac

Print this page
rev 2552 : 8079891: Store configure log in $BUILD/configure.log
Reviewed-by: erikj


 245 BPERF_SETUP_CCACHE
 246 
 247 ###############################################################################
 248 #
 249 # And now the finish...
 250 #
 251 ###############################################################################
 252 
 253 # Check for some common pitfalls
 254 BASIC_TEST_USABILITY_ISSUES
 255 
 256 # At the end, call the custom hook. (Dummy macro if no custom sources available)
 257 CUSTOM_LATE_HOOK
 258 
 259 # We're messing a bit with internal autoconf variables to put the config.status
 260 # in the output directory instead of the current directory.
 261 CONFIG_STATUS="$OUTPUT_ROOT/config.status"
 262 
 263 # Create the actual output files. Now the main work of configure is done.
 264 AC_OUTPUT
 265 CUSTOM_CONFIG_OUTPUT_GENERATED_HOOK
 266 
 267 # Try to move the config.log file to the output directory.
 268 if test -e ./config.log; then
 269   $MV -f ./config.log "$OUTPUT_ROOT/config.log" 2> /dev/null
 270 fi
 271 
 272 # Make the compare script executable
 273 $CHMOD +x $OUTPUT_ROOT/compare.sh

 274 
 275 # Finally output some useful information to the user
 276 HELP_PRINT_SUMMARY_AND_WARNINGS
 277 HELP_REPEAT_WARNINGS


 245 BPERF_SETUP_CCACHE
 246 
 247 ###############################################################################
 248 #
 249 # And now the finish...
 250 #
 251 ###############################################################################
 252 
 253 # Check for some common pitfalls
 254 BASIC_TEST_USABILITY_ISSUES
 255 
 256 # At the end, call the custom hook. (Dummy macro if no custom sources available)
 257 CUSTOM_LATE_HOOK
 258 
 259 # We're messing a bit with internal autoconf variables to put the config.status
 260 # in the output directory instead of the current directory.
 261 CONFIG_STATUS="$OUTPUT_ROOT/config.status"
 262 
 263 # Create the actual output files. Now the main work of configure is done.
 264 AC_OUTPUT






 265 
 266 # After AC_OUTPUT, we need to do final work
 267 CUSTOM_CONFIG_OUTPUT_GENERATED_HOOK
 268 BASIC_POST_CONFIG_OUTPUT
 269 
 270 # Finally output some useful information to the user
 271 HELP_PRINT_SUMMARY_AND_WARNINGS
 272 HELP_REPEAT_WARNINGS
< prev index next >