diff options
Diffstat (limited to 'debian/bin/kconfig.py')
-rwxr-xr-x | debian/bin/kconfig.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/debian/bin/kconfig.py b/debian/bin/kconfig.py deleted file mode 100755 index a8fee49468fd..000000000000 --- a/debian/bin/kconfig.py +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env python - -import optparse, os.path, sys -from debian_linux.kconfig import * - -def merge(output, *config): - kconfig = KconfigFile() - for c in config: - kconfig.read(file(c)) - file(output, "w").write(str(kconfig)) - -if __name__ == '__main__': - sys.exit(merge(*sys.argv[1:])) |