mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9 lines
206 B
Python
9 lines
206 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
import os, sys
|
||
|
|
||
|
if 'MAKEFLAGS' in os.environ:
|
||
|
del os.environ['MAKEFLAGS']
|
||
|
os.chdir(sys.argv[1])
|
||
|
sys.exit(os.system('nmake dll_ mt RETAIL_DLL_NAME=mozcrt19 RETAIL_LIB_NAME=msvcrt'))
|