Skip to content

Commit 6ec067d

Browse files
committed
Revert "workaround make -Otarget bug on windows"
This reverts commit 899b183.
1 parent 899b183 commit 6ec067d

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

cue.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -452,9 +452,7 @@ def call_make(args=None, **kws):
452452
makeargs = []
453453
else:
454454
makeargs = ['-j{0}'.format(parallel)]
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
455+
if not is_make3:
458456
makeargs += ['-Otarget']
459457
if silent:
460458
makeargs += ['-s']

0 commit comments

Comments
 (0)