From 2edfdac78b19d9472a87ee61aa250e5426d80151 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 25 May 2018 23:05:01 +0100 Subject: [PATCH 1/1] Try to allow building of packages without the GUI. --- cscript | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cscript b/cscript index e29168d6b..887978c3f 100644 --- a/cscript +++ b/cscript @@ -336,6 +336,9 @@ def configure_options(target): # a better solution. opt += ' --force-cpp11' + if hasattr(target, 'gui') and target.gui == 'no': + opt += ' --disable-gui' + # Build Windows debug versions with static linking as I think gdb works better then if target.debug and target.platform == 'windows': opt += ' --static-dcpomatic' -- 2.30.2