Skip to content

Commit

Permalink
Silence double-symlink errors while building solaris toolchain
Browse files Browse the repository at this point in the history
(cherry picked from commit 40291bc)
  • Loading branch information
workingjubilee authored and cuviper committed Jun 7, 2024
1 parent 7a24e8b commit c689624
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 c689624

Please sign in to comment.