xserver: Branch 'master'

Michel Daenzer daenzer at kemper.freedesktop.org
Mon Jun 11 03:55:28 PDT 2007


 configure.ac |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

New commits:
diff-tree 5cbec267b6426960c90f6bcff1d051af5084538c (from 1aceec61ff203848576c47a1eab13f90a67d7176)
Author: Michel Dänzer <michel at tungstengraphics.com>
Date:   Mon Jun 11 12:38:41 2007 +0200

    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.

diff --git a/configure.ac b/configure.ac
index ad934a2..0fd473a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1948,7 +1948,7 @@ AM_CONDITIONAL(SUN_KBD_MODE, [test x$KBD
 
 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"


More information about the xorg-commit mailing list