Skip to content

Commit 5ee2dfd

Browse files
committed
Auto merge of rust-lang#126011 - workingjubilee:try-fix-solaris-build, r=workingjubilee
Silence double-symlink errors while building solaris toolchain Intended to address the current issues with the tree.
2 parents a330e49 + f9150f6 commit 5ee2dfd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ci/docker/host-x86_64/dist-various-2/build-solaris-toolchain.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ apt-get clean
5454
# This makes all those symlinks.
5555
for lib in $(find -name '*.so.*'); do
5656
target=${lib%.so.*}.so
57-
[ -e $target ] || ln -s ${lib##*/} $target
57+
ln -s ${lib##*/} $target || echo "warning: silenced error symlinking $lib"
5858
done
5959

6060
# Remove Solaris 11 functions that are optionally used by libbacktrace.

src/doc/nomicon

0 commit comments

Comments
 (0)