summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm@src.gnome.org>2003-08-10 09:31:51 +0000
committerMalcolm Tredinnick <malcolm@src.gnome.org>2003-08-10 09:31:51 +0000
commit714401b78242b83912fcdd78a6a5615ebcc301c8 (patch)
tree8ca64a1eb8b562945cc1cfb7380319b091e150fc
parentd2466389e502fdbd7b1a198a95f170e53ca3b79f (diff)
downloadshared-mime-info-714401b78242b83912fcdd78a6a5615ebcc301c8.tar.gz
Show the version found for the various build tools like automake,
* autogen.sh: Show the version found for the various build tools like automake, autoconf, libtool, etc. Patch from Steve Chaplin (bug #119533). svn path=/trunk/; revision=3054
-rw-r--r--macros2/ChangeLog6
-rw-r--r--macros2/autogen.sh2
2 files changed, 7 insertions, 1 deletions
diff --git a/macros2/ChangeLog b/macros2/ChangeLog
index 70af2e71..58f91c03 100644
--- a/macros2/ChangeLog
+++ b/macros2/ChangeLog
@@ -1,3 +1,9 @@
+2003-08-10 Malcolm Tredinnick <malcolm@commsecure.com.au>
+
+ * autogen.sh: Show the version found for the various build tools
+ like automake, autoconf, libtool, etc. Patch from Steve Chaplin
+ (bug #119533).
+
2003-08-05 Malcolm Tredinnick <malcolm@commsecure.com.au>
* compile-flags.m4: Continuing to try and get the flags passed
diff --git a/macros2/autogen.sh b/macros2/autogen.sh
index 5236dfcd..58299e36 100644
--- a/macros2/autogen.sh
+++ b/macros2/autogen.sh
@@ -94,7 +94,7 @@ version_check() {
vc_actual_version=`$vc_checkprog --version | head -1 | \
sed 's/^.*[ ]\([0-9.]*[a-z]*\).*$/\1/'`
if compare_versions $vc_min_version $vc_actual_version; then
- echo "found."
+ echo "found $vc_actual_version"
# set variable
eval "$vc_variable=$vc_checkprog"
vc_status=0