From 82513dfcc69be0e7d2e77ceb49fc465f2dae3ae3 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Fri, 16 Jun 2006 19:24:15 +0000 Subject: [PATCH] Support "-include" syntax in configure/RELEASE* files --- configure/tools/convertRelease.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;