Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit cff7fcf

Browse files
committed
Properly parse Makefile after change from := to =.
1 parent c171176 commit cff7fcf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/msvc/Solution.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ EOF
218218

219219
my $mf = Project::read_file('src\backend\catalog\Makefile');
220220
$mf =~ s{\\s*[\r\n]+}{}mg;
221-
$mf =~ /^POSTGRES_BKI_SRCS\s*:=[^,]+,(.*)\)$/gm || croak "Could not find POSTGRES_BKI_SRCS in Makefile\n";
221+
$mf =~ /^POSTGRES_BKI_SRCS\s*:?=[^,]+,(.*)\)$/gm || croak "Could not find POSTGRES_BKI_SRCS in Makefile\n";
222222
my @allbki = split /\s+/, $1;
223223
foreach my $bki (@allbki) {
224224
next if $bki eq "";

0 commit comments

Comments
 (0)