Skip to content

Commit

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

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 + f9150f6 commit 5ee2dfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion src/doc/nomicon
Submodule nomicon updated 1 files
+8 −3 src/beneath-std.md

0 comments on commit 5ee2dfd

Please sign in to comment.