From 6ec067da7800457de033cd05298e419ee4c048ea Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Tue, 24 Oct 2023 10:37:16 -0700 Subject: [PATCH] Revert "workaround make -Otarget bug on windows" This reverts commit 899b18336b4ce3bd9328fd30c33621224c78a4d7. --- cue.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cue.py b/cue.py index 0f03bad..40ba7c6 100644 --- a/cue.py +++ b/cue.py @@ -452,9 +452,7 @@ def call_make(args=None, **kws): makeargs = [] else: makeargs = ['-j{0}'.format(parallel)] - if not is_make3 and ci['os'] != 'windows': - # not available until make 3 - # buggy on windows https://github.com/epics-base/ci-scripts/issues/84 + if not is_make3: makeargs += ['-Otarget'] if silent: makeargs += ['-s']