diff options
| author | Jubilee Young <workingjubilee@gmail.com> | 2024-06-04 23:31:52 -0700 |
|---|---|---|
| committer | Jubilee Young <workingjubilee@gmail.com> | 2024-06-04 23:32:36 -0700 |
| commit | 40291bce5f93afe25825709d7782e86445086e2f (patch) | |
| tree | aa972b3b4907eaa3a9abd8e50128d47be9d6e051 /src | |
| parent | a330e49593ee890f9197727a3a558b6e6b37f843 (diff) | |
| download | rust-40291bce5f93afe25825709d7782e86445086e2f.tar.gz rust-40291bce5f93afe25825709d7782e86445086e2f.zip | |
Silence double-symlink errors while building solaris toolchain
Diffstat (limited to 'src')
| -rwxr-xr-x | src/ci/docker/host-x86_64/dist-various-2/build-solaris-toolchain.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ci/docker/host-x86_64/dist-various-2/build-solaris-toolchain.sh b/src/ci/docker/host-x86_64/dist-various-2/build-solaris-toolchain.sh index 3939b4b7c41..d046b539036 100755 --- a/src/ci/docker/host-x86_64/dist-various-2/build-solaris-toolchain.sh +++ b/src/ci/docker/host-x86_64/dist-various-2/build-solaris-toolchain.sh @@ -54,7 +54,7 @@ apt-get clean # This makes all those symlinks. for lib in $(find -name '*.so.*'); do target=${lib%.so.*}.so - [ -e $target ] || ln -s ${lib##*/} $target + ln -s ${lib##*/} $target || echo "warning: silenced error symlinking $lib" done # Remove Solaris 11 functions that are optionally used by libbacktrace. |
