Silence double-symlink errors while building solaris toolchain

This commit is contained in:
Jubilee Young 2024-06-04 23:31:52 -07:00
parent a330e49593
commit 40291bce5f

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.