Skip to content

Commit

Permalink
Silence double-symlink errors while building solaris toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
workingjubilee committed Jun 5, 2024
1 parent a330e49 commit 40291bc
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 40291bc

Please sign in to comment.