Use C locale for the compilation date.
This commit is contained in:
parent
a8240d5c43
commit
bdd296d5b9
2 changed files with 2 additions and 2 deletions
2
TODO
2
TODO
|
@ -59,7 +59,7 @@
|
||||||
[?] native win32 (VS2005/VS2008)
|
[?] native win32 (VS2005/VS2008)
|
||||||
[/] Bug fixes
|
[/] Bug fixes
|
||||||
[x] Compilation without zlib headers fails - fixed
|
[x] Compilation without zlib headers fails - fixed
|
||||||
[ ] Compilation date and time in server welcome message is in OS locale - looks ugly 'cause often it's not match user's codepage
|
[x] Compilation date and time in server welcome message is in OS locale - looks ugly 'cause often it's not match user's codepage
|
||||||
[ ] Improvments
|
[ ] Improvments
|
||||||
[ ] ircd shouldn't need bison/byacc/yacc or flex for compilation
|
[ ] ircd shouldn't need bison/byacc/yacc or flex for compilation
|
||||||
--- other stuff
|
--- other stuff
|
||||||
|
|
|
@ -19,7 +19,7 @@ generation=`expr $generation + 1`
|
||||||
|
|
||||||
uname=`uname -a`
|
uname=`uname -a`
|
||||||
|
|
||||||
creation=`date | \
|
creation=`LC_ALL=C date | \
|
||||||
awk '{if (NF == 6) \
|
awk '{if (NF == 6) \
|
||||||
{ print $1 " " $2 " " $3 " " $6 " at " $4 " " $5 } \
|
{ print $1 " " $2 " " $3 " " $6 " at " $4 " " $5 } \
|
||||||
else \
|
else \
|
||||||
|
|
Loading…
Reference in a new issue