diff --git a/configure/tools/convertRelease.pl b/configure/tools/convertRelease.pl index f54a08338..612b61c5a 100755 --- a/configure/tools/convertRelease.pl +++ b/configure/tools/convertRelease.pl @@ -143,8 +143,8 @@ sub readRelease { $Rmacros->{$macro} = $path; next; } - # Handle "include " syntax - ($path) = /^\s*include\s+(.*)/; + # Handle "include " and "-include " syntax + ($path) = /^\s*-?include\s+(.*)/; &readRelease($path, $Rmacros, $Rapps) if (-r $path); } close IN;