Skip to content

Commit c689624

Browse files
workingjubileecuviper
authored andcommitted
Silence double-symlink errors while building solaris toolchain
(cherry picked from commit 40291bc)
1 parent 7a24e8b commit c689624

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
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.

0 commit comments

Comments
 (0)