Auto merge of #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.
This commit is contained in:
bors 2024-06-05 08:10:32 +00:00
commit 5ee2dfd2bc
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ apt-get clean
# This makes all those symlinks. # This makes all those symlinks.
for lib in $(find -name '*.so.*'); do for lib in $(find -name '*.so.*'); do
target=${lib%.so.*}.so target=${lib%.so.*}.so
[ -e $target ] || ln -s ${lib##*/} $target ln -s ${lib##*/} $target || echo "warning: silenced error symlinking $lib"
done done
# Remove Solaris 11 functions that are optionally used by libbacktrace. # Remove Solaris 11 functions that are optionally used by libbacktrace.

@ -1 +1 @@
Subproject commit 0d5f88475fe285affa6dbbc806e9e44d730797c0 Subproject commit 0ebdacadbda8ce2cd8fbf93985e15af61a7ab895