mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
libraries/qmltermwidget: Fix build on 32bit.
Using multiple jobs for make install causes random errors on 32bit. Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
5c2ce5d267
commit
4086b783cf
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ find -L . \
|
||||||
|
|
||||||
qmake-qt5
|
qmake-qt5
|
||||||
make
|
make
|
||||||
make INSTALL_ROOT=$PKG install
|
make INSTALL_ROOT=$PKG install -j1
|
||||||
|
|
||||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||||
|
|
Loading…
Reference in a new issue