summaryrefslogtreecommitdiff
path: root/testcurl.sh
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-01-23 07:37:21 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-01-23 07:37:21 +0000
commit5c5489916b941179a18bbb0a54e1f70b4b6ba95f (patch)
treecff6edd2e1bada53943ca4da6f37d861af6d292e /testcurl.sh
parent5627cf71676eb4b5b4740d41a2c2ad75300b878c (diff)
downloadcurl-5c5489916b941179a18bbb0a54e1f70b4b6ba95f.tar.gz
fix the configure option query
Diffstat (limited to 'testcurl.sh')
-rwxr-xr-xtestcurl.sh14
1 files changed, 8 insertions, 6 deletions
diff --git a/testcurl.sh b/testcurl.sh
index 4dca36290..78b78882d 100755
--- a/testcurl.sh
+++ b/testcurl.sh
@@ -8,7 +8,7 @@
# at a regular interval. The output will be suitable to be mailed automaticly
# to "curl-autocompile@haxx.se" to be dealt with automaticly. The most
# current build status (with a resonable backlog) will be published on the
-# curl site, at http://curl.haxx.se/
+# curl site, at http://curl.haxx.se/auto/
# USAGE:
# testcurl.sh [configure options] > output
@@ -49,11 +49,13 @@ if [ -z "$desc" ]; then
fixed="3"
fi
-if [ -z "$confopts" -a "$infixed" -lt "4" ]; then
- echo "please enter your additional arguments to configure"
- echo "examples: --with-ssl --enable-debug --enable-ipv6 --with-krb4"
- read confopts
- fixed="4"
+if [ -z "$confopts" ]; then
+ if [ $infixed -lt 4 ]; then
+ echo "please enter your additional arguments to configure"
+ echo "examples: --with-ssl --enable-debug --enable-ipv6 --with-krb4"
+ read confopts
+ fixed="4"
+ fi
fi