()
| 50 | |
| 51 | |
| 52 | def createComponentsFile(): |
| 53 | fileList = os.environ['KCONFIG_FILES'].split() |
| 54 | compFile = os.environ['KCONFIG_COMPONENTS'] |
| 55 | with open(compFile, "w") as f: |
| 56 | for s in fileList: |
| 57 | f.write('source "%s"\n' % fixpath(s)) |
| 58 | |
| 59 | |
| 60 | def main(): |