aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap7
1 files changed, 4 insertions, 3 deletions
diff --git a/bootstrap b/bootstrap
index 07043aa1c..dc8f563d9 100755
--- a/bootstrap
+++ b/bootstrap
@@ -38,12 +38,12 @@ if test $1 = "-d"; then
38 dir=$(dirname "$(readlink -f -- "$0")") 38 dir=$(dirname "$(readlink -f -- "$0")")
39 mkdir -p $dir/contrib/vendored 39 mkdir -p $dir/contrib/vendored
40 cd contrib/vendored 40 cd contrib/vendored
41 if existence ftp; then 41 if existence curl; then
42 ftp https://mandoc.bsd.lv/texi2mdoc/snapshots/texi2mdoc-0.1.2.tgz
43 elif existence curl; then
44 curl --output texi2mdoc-0.1.2.tgz https://mandoc.bsd.lv/texi2mdoc/snapshots/texi2mdoc-0.1.2.tgz 42 curl --output texi2mdoc-0.1.2.tgz https://mandoc.bsd.lv/texi2mdoc/snapshots/texi2mdoc-0.1.2.tgz
45 elif existence wget; then 43 elif existence wget; then
46 wget https://mandoc.bsd.lv/texi2mdoc/snapshots/texi2mdoc-0.1.2.tgz 44 wget https://mandoc.bsd.lv/texi2mdoc/snapshots/texi2mdoc-0.1.2.tgz
45 elif existence ftp; then
46 ftp https://mandoc.bsd.lv/texi2mdoc/snapshots/texi2mdoc-0.1.2.tgz
47 elif existence fetch; then 47 elif existence fetch; then
48 fetch https://mandoc.bsd.lv/texi2mdoc/snapshots/texi2mdoc-0.1.2.tgz 48 fetch https://mandoc.bsd.lv/texi2mdoc/snapshots/texi2mdoc-0.1.2.tgz
49 else 49 else
@@ -55,6 +55,7 @@ if test $1 = "-d"; then
55 dir=$(dirname "$(readlink -f -- "$0")") 55 dir=$(dirname "$(readlink -f -- "$0")")
56 make 56 make
57 echo "please prepend or append $dir/contrib/vendored/texi2mdoc/ to your PATH before running configure" 57 echo "please prepend or append $dir/contrib/vendored/texi2mdoc/ to your PATH before running configure"
58 echo "and pass --enable-texi2mdoc-generation to configure"
58 else 59 else
59 echo "no texi2mdoc, skipping" 60 echo "no texi2mdoc, skipping"
60 fi 61 fi