diff options
Diffstat (limited to 'scripts/lib/devtool')
-rw-r--r-- | scripts/lib/devtool/standard.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py index 0339d12763..852672810a 100644 --- a/scripts/lib/devtool/standard.py +++ b/scripts/lib/devtool/standard.py | |||
@@ -968,9 +968,9 @@ def modify(args, config, basepath, workspace): | |||
968 | '}\n') | 968 | '}\n') |
969 | if rd.getVarFlag('do_menuconfig','task'): | 969 | if rd.getVarFlag('do_menuconfig','task'): |
970 | f.write('\ndo_configure:append() {\n' | 970 | f.write('\ndo_configure:append() {\n' |
971 | ' if [ ! ${DEVTOOL_DISABLE_MENUCONFIG} ]; then\n' | 971 | ' if [ ${@ oe.types.boolean(\'${KCONFIG_CONFIG_ENABLE_MENUCONFIG}\') } = True ]; then\n' |
972 | ' cp ${B}/.config ${S}/.config.baseline\n' | 972 | ' cp ${KCONFIG_CONFIG_ROOTDIR}/.config ${S}/.config.baseline\n' |
973 | ' ln -sfT ${B}/.config ${S}/.config.new\n' | 973 | ' ln -sfT ${KCONFIG_CONFIG_ROOTDIR}/.config ${S}/.config.new\n' |
974 | ' fi\n' | 974 | ' fi\n' |
975 | '}\n') | 975 | '}\n') |
976 | if initial_rev: | 976 | if initial_rev: |