File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package Project;
3
3
#
4
4
# Package that encapsulates a Visual C++ project file generation
5
5
#
6
- # $PostgreSQL: pgsql/src/tools/msvc/Project.pm,v 1.18 2008/02/19 16:15:14 mha Exp $
6
+ # $PostgreSQL: pgsql/src/tools/msvc/Project.pm,v 1.19 2008/04/15 16:22:36 adunstan Exp $
7
7
#
8
8
use Carp;
9
9
use strict;
@@ -259,7 +259,8 @@ sub AddDir
259
259
}
260
260
261
261
# Match rules that pull in source files from different directories
262
- my $replace_re = qr { ^([^:\n\$ ]+\. c)\s *:\s *(?:%\s *: )?\$ (\( [^\) ]+\) )\/ (.*)\/ [^\/ ]+$} ;
262
+ # example: pg_crc.c: $(top_srcdir)/src/backend/utils/hash/pg_crc.c
263
+ my $replace_re = qr { ^([^:\n\$ ]+\. c)\s *:\s *(?:%\s *: )?\$ (\( [^\) ]+\) )\/ (.*)\/ [^\/ ]+$} m ;
263
264
while ($mf =~ m {$replace_re } m )
264
265
{
265
266
my $match = $1 ;
You can’t perform that action at this time.
0 commit comments