From 4a4f6658de0fb838a19dc493a0f6dc3b40127145 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Tue, 23 Jan 2018 21:33:21 +0100 Subject: [PATCH] When forcing USE_THREAD=0, override USE_OPENMP as well This avoids an error exit a few lines down as USE_THREAD=0 conflicts with USE_OPENMP=1 --- Makefile.system | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.system b/Makefile.system index 972238f36..5caad0b03 100644 --- a/Makefile.system +++ b/Makefile.system @@ -181,6 +181,7 @@ endif ifeq ($(NUM_THREADS), 1) override USE_THREAD = 0 +override USE_OPENMP = 0 endif ifdef USE_THREAD