[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] fix configure script for 0.7 branch
From: |
william hubbs |
Subject: |
[PATCH] fix configure script for 0.7 branch |
Date: |
Fri, 10 Sep 2010 01:09:27 -0500 |
From: William Hubbs <address@hidden>
To: address@hidden
Commit bd30a8a30c82f8f5a81eeb25406de0698f8e735b
introduced a change to configure.in which should not have been
introduced because it broke the way the version of the software is
calculated. This reverts that change.
---
configure.in | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.in b/configure.in
index d0e31b8..5e8a247 100644
--- a/configure.in
+++ b/configure.in
@@ -1,6 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
-AC_INIT([speech-dispatcher], [0.7.1-beta2], [speechd at lists.freebsoft.org])
+AC_INIT(configure.in)
AC_LANG(C)
@@ -8,7 +8,7 @@ dnl progs
AC_PROG_CC
dnl info
-AM_INIT_AUTOMAKE([foreign])
+AM_INIT_AUTOMAKE("speech-dispatcher", "`cat version.sh|grep '^VERSION'|awk -F=
'{print $2}'`")
AM_CONFIG_HEADER(config.h)
--
1.7.2.2
- [PATCH] fix configure script for 0.7 branch,
william hubbs <=