commit: f4fb1c78288639ebb25dc6ec5f00df4b2de6912f
Author: Michael Haubenwallner <haubi <AT> gentoo <DOT> org>
AuthorDate: Wed May 16 13:02:11 2018 +0000
Commit: Michael Haubenwallner <haubi <AT> gentoo <DOT> org>
CommitDate: Wed May 16 13:02:24 2018 +0000
URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=f4fb1c78
bootstrap-prefix.sh: try to fix 32bit solaris
scripts/bootstrap-prefix.sh | 3 +++
1 file changed, 3 insertions(+)
diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index a7eeaf96f0..45e1d23f57 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -942,6 +942,9 @@ EOP
# libgcc_s.so is on Solaris
libdir="-L/usr/sfw/lib/64"
;;
+ *-solaris*) # 32bit
+ libdir="-L/usr/sfw/lib"
+ ;;
esac
# python refuses to find the zlib headers that are built in the offset,