diff options
author | Magnus Hagander | 2007-02-13 15:34:49 +0000 |
---|---|---|
committer | Magnus Hagander | 2007-02-13 15:34:49 +0000 |
commit | 33692c104b29de116ef943223252bc325dc7ba1a (patch) | |
tree | 157360021ac51009f7d3ab691204c4edf6349bfc | |
parent | cff7fcf17328db75f41c1e056807dfc81c22f152 (diff) |
One more fix for makefile := to : change.
-rwxr-xr-x | src/tools/msvc/install.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/msvc/install.pl b/src/tools/msvc/install.pl index 04b90f5085..5959f9b564 100755 --- a/src/tools/msvc/install.pl +++ b/src/tools/msvc/install.pl @@ -143,7 +143,7 @@ sub GenerateConversionScript { sub GenerateTimezoneFiles { my $mf = read_file("src/timezone/Makefile"); $mf =~ s{\\\s*[\r\n]+}{}mg; - $mf =~ /^TZDATA\s*:=\s*(.*)$/m || die "Could not find TZDATA row in timezone makefile\n"; + $mf =~ /^TZDATA\s*:?=\s*(.*)$/m || die "Could not find TZDATA row in timezone makefile\n"; my @tzfiles = split /\s+/,$1; unshift @tzfiles,''; print "Generating timezone files..."; |