Skip to content

Commit

Permalink
Auto merge of #126011 - workingjubilee:try-fix-solaris-build, r=worki…
Browse files Browse the repository at this point in the history
…ngjubilee

Silence double-symlink errors while building solaris toolchain

Intended to address the current issues with the tree.
  • Loading branch information
bors committed Jun 5, 2024
2 parents a330e49 + 40291bc commit 777e48d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 777e48d

Please sign in to comment.