diff options
author | Karel Kočí <cynerd@email.cz> | 2015-05-21 19:16:07 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-05-21 19:16:07 +0200 |
commit | f882ffb2aa2f4e75c31d7cd735625c5847f642e0 (patch) | |
tree | ec4bb47d2b4e3de4255a774becf1f9584aec9d9a /scripts | |
parent | cf190b57aba54003efe0996c598216cbfe8c0cd0 (diff) | |
download | linux-conf-perf-f882ffb2aa2f4e75c31d7cd735625c5847f642e0.tar.gz linux-conf-perf-f882ffb2aa2f4e75c31d7cd735625c5847f642e0.tar.bz2 linux-conf-perf-f882ffb2aa2f4e75c31d7cd735625c5847f642e0.zip |
Document conf.py and remove spare variable SRCARCH
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/confmk.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/confmk.py b/scripts/confmk.py index c688ed9..974178c 100755 --- a/scripts/confmk.py +++ b/scripts/confmk.py @@ -11,7 +11,7 @@ def gen_confmk(): with open(conf.dot_confmk, 'w') as f: f.write("# This file is generated. Please don't edit this file.\n") - f.write("ARCH := " + conf.SRCARCH + "\n") + f.write("ARCH := " + conf.ARCH + "\n") f.write("\n") f.write("BUILDROOT_INITRAM := " + conf.buildroot_initram + "\n") f.write("BUILDROOT_INITTAB_DIRECTIVE := " + conf.buildroot_inittab_directive + "\n") |