From b3091e6d6f75838ad370395d7265fb303850a202 Mon Sep 17 00:00:00 2001 From: Ralph Lange Date: Tue, 23 Jun 2020 17:35:13 +0200 Subject: [PATCH] cue: fix EXTRA settings for build action --- cue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cue.py b/cue.py index 1576f1f..c7732f3 100644 --- a/cue.py +++ b/cue.py @@ -911,7 +911,7 @@ def prepare(args): def build(args): setup_for_build(args) fold_start('build.module', 'Build the main module') - call_make(args.makeargs) + call_make(args.makeargs, use_extra=True) fold_end('build.module', 'Build the main module')