2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-13 00:12:11 +00:00

Better error reporting for IMPORT

[SVN r13584]
This commit is contained in:
Dave Abrahams
2002-04-30 14:13:09 +00:00
parent 77c1f17281
commit 2e6f58d76f

View File

@@ -494,7 +494,12 @@ builtin_import(
if ( source_name || target_name )
{
backtrace_line( frame->prev );
printf( "import error: length of source and target rule name lists don't match" );
printf( "import error: length of source and target rule name lists don't match!\n" );
printf( " source: " );
list_print( source_rules );
printf( "\n target: " );
list_print( target_rules );
printf( "\n" );
backtrace( frame->prev );
exit(1);
}