aboutsummaryrefslogtreecommitdiff
path: root/maketgz
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-10-23 13:56:12 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-10-23 13:56:12 +0000
commit8f5ffd94a2b7b751b95d1abddf936138f3235838 (patch)
treef9e8713a9ac64028d5af42fcd64d84b161b9c10a /maketgz
parentc44b10de41ffca204acf11f36093c24521119239 (diff)
the configure script dynamically gets the version from the include file now
which lets the maketgz skip updating the configure.in file
Diffstat (limited to 'maketgz')
-rwxr-xr-xmaketgz38
1 files changed, 19 insertions, 19 deletions
diff --git a/maketgz b/maketgz
index 79982d0d3..d39d12943 100755
--- a/maketgz
+++ b/maketgz
@@ -62,25 +62,25 @@ findprog()
# brand new version number:
#
-if { findprog autoconf >/dev/null 2>/dev/null; } then
- echo "- No autoconf found, we leave configure as it is"
-else
- # Replace version number in configure.in file:
-
- CONF="configure.in"
-
- sed 's/^AM_INIT_AUTOMAKE.*/AM_INIT_AUTOMAKE(curl,"'$version'")/g' $CONF >$CONF.new
-
- # Save old file
- cp -p $CONF $CONF.old
-
- # Make new configure.in
- mv $CONF.new $CONF
-
- # Update the configure script
- echo "Runs autoconf"
- autoconf
-fi
+#if { findprog autoconf >/dev/null 2>/dev/null; } then
+# echo "- No autoconf found, we leave configure as it is"
+#else
+# # Replace version number in configure.in file:
+#
+# CONF="configure.in"
+#
+# sed 's/^AM_INIT_AUTOMAKE.*/AM_INIT_AUTOMAKE(curl,"'$version'")/g' $CONF >$CONF.new
+#
+# # Save old file
+# cp -p $CONF $CONF.old
+#
+# # Make new configure.in
+# mv $CONF.new $CONF
+#
+# # Update the configure script
+# echo "Runs autoconf"
+# autoconf
+#fi
############################################################################
#