diff options
author | Michel Dänzer <michel@tungstengraphics.com> | 2007-06-11 12:38:41 +0200 |
---|---|---|
committer | Michel Dänzer <michel@tungstengraphics.com> | 2007-06-11 12:38:41 +0200 |
commit | 5cbec267b6426960c90f6bcff1d051af5084538c (patch) | |
tree | 2f92f345296bced412df0abb89e84b05b7f6cdf7 | |
parent | 1aceec61ff203848576c47a1eab13f90a67d7176 (diff) |
Make sure BUILD_TIME doesn't have a leading zero.
It causes the compiler to treat it as an octal constant instead of decimal as
intended, which could even cause a build failure in the cases of 08 and 09.
Thanks to Clark Rawlins for pointing out the problem.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index ad934a211..0fd473ad8 100644 --- a/configure.ac +++ b/configure.ac @@ -1948,7 +1948,7 @@ AM_CONDITIONAL(SUN_KBD_MODE, [test x$KBD_MODE_TYPE = xsun]) BUILD_DATE="$(date +'%Y%m%d')" AC_SUBST([BUILD_DATE]) -BUILD_TIME="$(date +'%H%M%S')" +BUILD_TIME="$(date +'%k%M%S')" AC_SUBST([BUILD_TIME]) DIX_CFLAGS="-DHAVE_DIX_CONFIG_H $XSERVER_CFLAGS" |