diff options
author | Magnus Hagander | 2007-02-13 15:34:49 +0000 |
---|---|---|
committer | Magnus Hagander | 2007-02-13 15:34:49 +0000 |
commit | edfb8df76ac4240c915969b8e6beef53743899eb (patch) | |
tree | d53f604d963abfd8e0d1ab71b6a7098af258c928 | |
parent | fe3120d6a9b6a052b98fbc9eca2b3418993ee2ea (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..."; |