diff --git a/src/engine/builtins.c b/src/engine/builtins.c index 4cc3bf63e..817334119 100644 --- a/src/engine/builtins.c +++ b/src/engine/builtins.c @@ -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); }