diff options
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") |