summaryrefslogtreecommitdiffstats
path: root/libreoffice
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2017-09-11 18:37:30 +0000
committer Eric Hameleers <alien@slackware.com>2017-09-11 18:37:30 +0000
commit38e1156ddbad089707e4245771e42a5efdb0ddf0 (patch)
tree0da642a6282f44a6e8e3155aacf0a4e0bd7178f1 /libreoffice
parente62ecd7deb0cf4f57ec3cb0c59fe4ad829fcf6d5 (diff)
downloadasb-38e1156ddbad089707e4245771e42a5efdb0ddf0.tar.gz
asb-38e1156ddbad089707e4245771e42a5efdb0ddf0.tar.xz
libreoffice: temporarily skip all checks on x86 (many will fail)
Diffstat (limited to 'libreoffice')
-rwxr-xr-xlibreoffice/build/libreoffice.SlackBuild7
1 files changed, 6 insertions, 1 deletions
diff --git a/libreoffice/build/libreoffice.SlackBuild b/libreoffice/build/libreoffice.SlackBuild
index 79eb5cee..78ce3099 100755
--- a/libreoffice/build/libreoffice.SlackBuild
+++ b/libreoffice/build/libreoffice.SlackBuild
@@ -1244,7 +1244,12 @@ sed -i -e 's/check-if-root //g' Makefile
echo "Starting $PRGNAM compilation (takes a long time)..."
#./bootstrap 2>&1 | tee -a $OUTPUT/make-${PRGNAM}.log
# Using "make build" instead of just "make" will skip all unit tests:
-make build VERBOSE=yes 2>&1 | tee -a $OUTPUT/make-${PRGNAM}.log
+if [ "$ARCH" != "x86_64" ]; then
+ # Temporarily skip all checks on x86 (many will fail):
+ make build-nocheck VERBOSE=yes 2>&1 | tee -a $OUTPUT/make-${PRGNAM}.log
+else
+ make build VERBOSE=yes 2>&1 | tee -a $OUTPUT/make-${PRGNAM}.log
+fi
# Compile the dictionaries from source.
# Resulting dict-* directories are placed in $INSTDIR :