We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95206f4 commit a7e96afCopy full SHA for a7e96af
configure
@@ -133,12 +133,13 @@ probe() {
133
}
134
135
probe_need() {
136
- local V=$1
137
probe $*
+ local V=$1
138
+ shift
139
eval VV=\$$V
140
if [ -z "$VV" ]
141
then
- err "needed, but unable to find any of: $*"
142
+ err "$V needed, but unable to find any of: $*"
143
fi
144
145
@@ -725,7 +726,7 @@ if [ -n "$CFG_ENABLE_ORBIT" ]; then putvar CFG_ENABLE_ORBIT; fi
725
726
727
step_msg "looking for build programs"
728
-probe_need CFG_CURLORWGET curl wget
729
+probe_need CFG_CURL curl
730
if [ -z "$CFG_PYTHON_PROVIDED" ]; then
731
probe_need CFG_PYTHON python2.7 python2 python
732
0 commit comments