Skip to content

Commit 899b183

Browse files
committed
workaround make -Otarget bug on windows
Sometimes triggers "invalid output sync mutex" error from make.
1 parent 8e0cb61 commit 899b183

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

cue.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,9 @@ def call_make(args=None, **kws):
452452
makeargs = []
453453
else:
454454
makeargs = ['-j{0}'.format(parallel)]
455-
if not is_make3:
455+
if not is_make3 and ci['os'] != 'windows':
456+
# not available until make 3
457+
# buggy on windows https://github.com/epics-base/ci-scripts/issues/84
456458
makeargs += ['-Otarget']
457459
if silent:
458460
makeargs += ['-s']

0 commit comments

Comments
 (0)