diff options
author | Maciej Barć <xgqt@gentoo.org> | 2022-06-28 01:39:55 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2022-06-28 01:41:28 +0200 |
commit | 0b99b49c0aaa878066b2db520349e7177d9e589d (patch) | |
tree | 3e0b7dcaaf886ca3c4ddae8de7d57b833949b7d9 /dev-lang/smlnj | |
parent | dev-python/beniget: Stabilize 0.4.1-r1 x86, #854657 (diff) | |
download | gentoo-0b99b49c0aaa878066b2db520349e7177d9e589d.tar.gz gentoo-0b99b49c0aaa878066b2db520349e7177d9e589d.tar.bz2 gentoo-0b99b49c0aaa878066b2db520349e7177d9e589d.zip |
dev-lang/smlnj: patch smlnj_get_libdir function
Closes: https://bugs.gentoo.org/650182
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'dev-lang/smlnj')
-rw-r--r-- | dev-lang/smlnj/smlnj-110.82.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
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 |