summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Hagander2013-01-31 14:03:24 +0000
committerMagnus Hagander2013-01-31 14:07:04 +0000
commitb0b8dff353f8aae4bb73c6e5f465a049eb0934ea (patch)
treed155da58c4d8d6133dd3871c62de5591019023e7
parente09825aa540ea4037732d981472d12960ad999f6 (diff)
Properly zero-pad the day-of-year part of the win32 build number
This ensure the version number increases over time. The first three digits in the version number is still set to the actual PostgreSQL version number, but the last one is intended to be an ever increasing build number, which previosly failed when it changed between 1, 2 and 3 digits long values. Noted by Deepak
-rw-r--r--src/tools/msvc/Project.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/msvc/Project.pm b/src/tools/msvc/Project.pm
index 6f359bfdbcb..0a47e40942f 100644
--- a/src/tools/msvc/Project.pm
+++ b/src/tools/msvc/Project.pm
@@ -308,7 +308,7 @@ sub AddResourceFile
my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst) =
localtime(time);
- my $d = ($year - 100) . "$yday";
+ my $d = sprintf("%02d%03d", ($year - 100), $yday);
if (Solution::IsNewer("$dir\\win32ver.rc", 'src\port\win32ver.rc'))
{