commit: 0b99b49c0aaa878066b2db520349e7177d9e589d Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Mon Jun 27 23:39:55 2022 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Mon Jun 27 23:41:28 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b99b49c
dev-lang/smlnj: patch smlnj_get_libdir function Closes: https://bugs.gentoo.org/650182 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> dev-lang/smlnj/smlnj-110.82.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-lang/smlnj/smlnj-110.82.ebuild b/dev-lang/smlnj/smlnj-110.82.ebuild index 6e3b7303f61c..ae7b0c01d2c6 100644 --- a/dev-lang/smlnj/smlnj-110.82.ebuild +++ b/dev-lang/smlnj/smlnj-110.82.ebuild @@ -120,7 +120,7 @@ smlnj_get_libdir() { # Remove the native lib dir local y=$(remove_element_from_array $(get_libdir) ${x[@]}) # Remove libx32 if it exists - local z=$(remove_element_from_array "libx32" ${y[@]}) + local z=( $(remove_element_from_array "libx32" ${y[@]}) ) # However if the system is not multlib, then we still need to install # the 32 bit smlnj executables and libraries somewhere, so I guess we # just have to put them under the system lib directory. Put the
