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 74b310aCopy full SHA for 74b310a
ci/build-run-docker.sh
@@ -22,3 +22,12 @@ 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
+out=$(nm target/$TARGET/release/rustup-init | grep Curl_ssl_init)
29
30
+if [ -z "$out" ]; then
31
+ echo "Missing ssl support!!!!"
32
+ exit 1
33
+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