aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-04-26 10:52:21 +0200
committerKarel Kočí <cynerd@email.cz>2015-04-26 10:52:21 +0200
commit1f88ee3ca518bf5ee8b11f78d8dbc7b38428f4a7 (patch)
tree783b200ede28750b829231b08014404f1b318c35 /scripts
parentdd54ddbc8fd1ba60c3db57cdcc48517c40897068 (diff)
downloadlinux-conf-perf-1f88ee3ca518bf5ee8b11f78d8dbc7b38428f4a7.tar.gz
linux-conf-perf-1f88ee3ca518bf5ee8b11f78d8dbc7b38428f4a7.tar.bz2
linux-conf-perf-1f88ee3ca518bf5ee8b11f78d8dbc7b38428f4a7.zip
Generate configuration for root Makefile from conf.py
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/confmk.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/scripts/confmk.py b/scripts/confmk.py
new file mode 100755
index 0000000..ef27543
--- /dev/null
+++ b/scripts/confmk.py
@@ -0,0 +1,19 @@
+#!/bin/python3
+import os
+import sys
+from conf import conf
+
+def gen_confmk():
+ try:
+ os.remove(conf.dot_confmk)
+ except OSError:
+ pass
+
+ with open(conf.dot_confmk, 'w') as f:
+ f.write("# This file is generated. Please don't edit this file.\n")
+ f.write("SRCARCH := " + conf.SRCARCH + "\n")
+
+#################################################################################
+
+if __name__ == '__main__':
+ gen_confmk()