From 68c575cb73fd6ff6c9c0ce29a3d8105da44abfcc Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Tue, 23 Sep 2008 11:05:44 -0400 Subject: [PATCH] Move RELEASE_DATE below AC_INIT. Doing it the other way around clobbers the setting, which means you get a null release date string in the log. Thanks autoconf! --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 0262274c5..51d8b14e7 100644 --- a/configure.ac +++ b/configure.ac @@ -26,8 +26,8 @@ dnl dnl Process this file with autoconf to create configure. AC_PREREQ(2.57) -RELEASE_DATE="3 September 2008" AC_INIT([xorg-server], 1.5.0, [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xorg-server) +RELEASE_DATE="3 September 2008" AC_CONFIG_SRCDIR([Makefile.am]) AM_INIT_AUTOMAKE([dist-bzip2 foreign]) AM_MAINTAINER_MODE