Skip to content

Commit 9c3ef89

Browse files
committed
configure: Require one of wget or curl.
1 parent c6b0d4f commit 9c3ef89

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ fi
402402
step_msg "looking for build programs"
403403

404404
probe_need CFG_PERL perl
405-
probe_need CFG_CURL curl
405+
probe_need CFG_CURLORWGET curl wget
406406
probe_need CFG_PYTHON python2.7 python2.6 python2 python
407407

408408
python_version=$($CFG_PYTHON -V 2>&1)

src/etc/snapshot.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# xfail-license
22

3-
import re, os, sys, glob, tarfile, shutil, subprocess, tempfile
3+
import re, os, sys, glob, tarfile, shutil, subprocess, tempfile, distutils.spawn
44

55
try:
66
import hashlib
@@ -132,7 +132,13 @@ def local_rev_committer_date():
132132
def get_url_to_file(u,f):
133133
# no security issue, just to stop partial download leaving a stale file
134134
tmpf = f + '.tmp'
135-
returncode = subprocess.call(["curl", "-o", tmpf, u])
135+
136+
returncode = -1
137+
if distutils.spawn.find_executable("curl"):
138+
returncode = subprocess.call(["curl", "-o", tmpf, u])
139+
elif distutils.spawn.find_executable("wget"):
140+
returncode = subprocess.call(["wget", "-O", tmpf, u])
141+
136142
if returncode != 0:
137143
os.unlink(tmpf)
138144
raise

0 commit comments

Comments
 (0)