Overview
Comment: | [build] adjustment of previous commit |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | build |
Files: | files | file ages | folders |
SHA3-256: |
63129ede509d9755d49520bf8698d9dc |
User & Date: | olr on 2017-06-05 17:18:40 |
Other Links: | manifest | tags |
Context
2017-06-05
| ||
19:37 | [doc] formatting update check-in: d59335ae38 user: olr tags: trunk, doc | |
17:18 | [build] adjustment of previous commit check-in: 63129ede50 user: olr tags: trunk, build | |
15:57 | [build] make.py revamped +helpers +project build check-in: c24c371d57 user: olr tags: trunk, build | |
Changes
Modified make.py from [686aabcbed] to [418a36d3bb].
︙ | ︙ | |||
259 260 261 262 263 264 265 | print("+ Modules: ", end="") for sf in os.listdir(spLang+"/modules-js"): if not sf.startswith("gce_"): helpers.copyAndFileTemplate(spLang+"/modules-js/"+sf, spLangPack+"/"+sf, dVars) print(sf, end=", ") print() | < | | 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 | print("+ Modules: ", end="") for sf in os.listdir(spLang+"/modules-js"): if not sf.startswith("gce_"): helpers.copyAndFileTemplate(spLang+"/modules-js/"+sf, spLangPack+"/"+sf, dVars) print(sf, end=", ") print() try: build_module = importlib.import_module("gc_lang."+sLang+".build") except ImportError: print("# No complementary builder <build.py> in folder gc_lang/"+sLang) else: build_module.build(sLang, dVars, spLangPack) return dVars['version'] def main (): print("Python: " + sys.version) |
︙ | ︙ |