From 6a4dee9b4074f22312f11e5db1dcfaf447fad3e9 Mon Sep 17 00:00:00 2001 From: Jerry James Date: Jan 23 2023 21:45:19 +0000 Subject: Do not try to run the Java tests on i686. --- diff --git a/bigloo.spec b/bigloo.spec index 899cb2a..61f3776 100644 --- a/bigloo.spec +++ b/bigloo.spec @@ -324,13 +324,16 @@ export TZ=$(date +%%Z) # The commands below are the exact ones that make executes, but they succeed # if run this way. Investigation continues. NATIVEBACKEND=$(sed -n 's/NATIVEBACKEND=\(.*\)/\1/p' Makefile.config) +JVMBACKEND=$(sed -n 's/JVMBACKEND=\(.*\)/\1/p' Makefile.config) cd recette if [ "$NATIVEBACKEND" = yes ]; then make recette-static ../bin/bglrun.sh ./recette-static fi cd - -make jvm-test +if [ "$JVMBACKEND" = yes ]; then + make jvm-test +fi %files