We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 270aaa5 commit 32603d3Copy full SHA for 32603d3
ci/build-run-docker.sh
@@ -22,3 +22,10 @@ docker run \
22
-e SKIP_TESTS=$SKIP_TESTS \
23
-it $DOCKER \
24
ci/run-docker.sh
25
+
26
+# check that rustup-init was built with ssl support
27
+# see https://github.com/rust-lang-nursery/rustup.rs/issues/1051
28
+if ! (nm target/$TARGET/release/rustup-init | grep Curl_ssl_version &> /dev/null); then
29
+ echo "Missing ssl support!!!!"
30
+ exit 1
31
+fi
ci/run-docker.sh
@@ -177,6 +177,9 @@ else
177
install=$final_install_path
178
fi
179
180
+# the install dir was renamed, so we need to update pkgconfig
181
+sed -i -e 's/-partial//g' $install/lib/pkgconfig/*
182
183
# Variables to the openssl-sys crate to link statically against the OpenSSL we
184
# just compiled above
185
export OPENSSL_STATIC=1
0 commit comments