mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-20 18:08:19 +00: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'))
|