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

Commit

Permalink
Win32 gyp: If sys.platform is 'msys' use make, not msvs
Browse files Browse the repository at this point in the history
  • Loading branch information
mingwandroid committed Sep 22, 2014
1 parent b276860 commit 0ece2fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@ if options.use_ninja:
gyp_args += ['-f', 'ninja-' + flavor]
elif options.use_xcode:
gyp_args += ['-f', 'xcode']
elif flavor == 'win':
elif flavor == 'win' and sys.platform != 'msys':
gyp_args += ['-f', 'msvs', '-G', 'msvs_version=auto']
else:
gyp_args += ['-f', 'make-' + flavor]
Expand Down

0 comments on commit 0ece2fe

Please sign in to comment.