diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2022-04-14 18:07:58 +1200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-04-16 12:12:40 +0700 |
commit | 155e3cb6e16e37c849ad78a6fc588ef416404e74 (patch) | |
tree | 6285545b65cf72ef7a96e287617fd8944503e76d /python/python3-pythran/python3-pythran.SlackBuild | |
parent | c34cf3e2601a35917a2cffd0ed24420326a748e8 (diff) |
python/python3-pythran: Fix lib dir usage on 32bit.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python3-pythran/python3-pythran.SlackBuild')
-rw-r--r-- | python/python3-pythran/python3-pythran.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/python3-pythran/python3-pythran.SlackBuild b/python/python3-pythran/python3-pythran.SlackBuild index 52881ebb5a94..24754f626bf3 100644 --- a/python/python3-pythran/python3-pythran.SlackBuild +++ b/python/python3-pythran/python3-pythran.SlackBuild @@ -86,7 +86,7 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true # Remove bundled boost and xsimd -rm -r $PKG/usr/lib64/python*/site-packages/pythran/{boost,xsimd} +rm -r $PKG/usr/lib$LIBDIRSUFFIX/python*/site-packages/pythran/{boost,xsimd} mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a AUTHORS Changelog LICENSE PKG-INFO README.rst requirements.txt $PKG/usr/doc/$PRGNAM-$VERSION |