diff options
author | unknown <lenz@mysql.com> | 2005-02-02 19:23:24 +0100 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2005-02-02 19:23:24 +0100 |
commit | d4ac4cb112076cb9f79674f46591c3608cc10318 (patch) | |
tree | 9fb5f9180f42ef4832c6bb7887f6ba749e01aeb4 /Build-tools | |
parent | 22f839cdd23475075e0f1e9eeeb3c7201f9a4262 (diff) | |
download | mariadb-git-d4ac4cb112076cb9f79674f46591c3608cc10318.tar.gz |
- typo fix...
Diffstat (limited to 'Build-tools')
-rwxr-xr-x | Build-tools/Bootstrap | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build-tools/Bootstrap b/Build-tools/Bootstrap index 827eb4022d7..8b769dca3c4 100755 --- a/Build-tools/Bootstrap +++ b/Build-tools/Bootstrap @@ -214,7 +214,7 @@ if (-d $target_dir) @stat= stat("$target_dir/configure.in"); my $mtime= $stat[9]; my ($sec,$min,$hour,$mday,$mon,$year) = localtime($mtime); - my $mtime= sprintf("%04d%-02d-%02d-%02d:%02d", $year+1900, $mon+1, $mday, $hour, $min); + my $mtime= sprintf("%04d-%02d-%02d-%02d:%02d", $year+1900, $mon+1, $mday, $hour, $min); &logger("Renaming $target_dir to $target_dir-$mtime"); $command= "mv "; |