Skip to content
This repository was archived by the owner on Apr 22, 2023. It is now read-only.

Commit d1522bb

Browse files
committed
Win32 gyp: If sys.platform is 'msys' use make, not msvs
1 parent 0e187e4 commit d1522bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@ if options.use_ninja:
760760
gyp_args += ['-f', 'ninja-' + flavor]
761761
elif options.use_xcode:
762762
gyp_args += ['-f', 'xcode']
763-
elif flavor == 'win':
763+
elif flavor == 'win' and sys.platform != 'msys':
764764
gyp_args += ['-f', 'msvs', '-G', 'msvs_version=auto']
765765
else:
766766
gyp_args += ['-f', 'make-' + flavor]

0 commit comments

Comments
 (0)