mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +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'))
|