summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/cml1.bbclass28
1 files changed, 14 insertions, 14 deletions
diff --git a/meta/classes/cml1.bbclass b/meta/classes/cml1.bbclass
index 37ed792b7c..ba44196a57 100644
--- a/meta/classes/cml1.bbclass
+++ b/meta/classes/cml1.bbclass
@@ -15,23 +15,23 @@ HOSTLDFLAGS = "${BUILD_LDFLAGS}"
15HOST_LOADLIBES = "-lncurses" 15HOST_LOADLIBES = "-lncurses"
16 16
17python do_menuconfig() { 17python do_menuconfig() {
18 try: 18 try:
19 mtime = os.path.getmtime(".config") 19 mtime = os.path.getmtime(".config")
20 except OSError: 20 except OSError:
21 mtime = 0 21 mtime = 0
22 22
23 oe_terminal("${SHELL} -c \"make menuconfig; if [ $? -ne 0 ]; then echo 'Command failed.'; printf 'Press any key to continue... '; read r; fi\"", '${PN} Configuration', d) 23 oe_terminal("${SHELL} -c \"make menuconfig; if [ $? -ne 0 ]; then echo 'Command failed.'; printf 'Press any key to continue... '; read r; fi\"", '${PN} Configuration', d)
24 24
25 # FIXME this check can be removed when the minimum bitbake version has been bumped 25 # FIXME this check can be removed when the minimum bitbake version has been bumped
26 if hasattr(bb.build, 'write_taint'): 26 if hasattr(bb.build, 'write_taint'):
27 try: 27 try:
28 newmtime = os.path.getmtime(".config") 28 newmtime = os.path.getmtime(".config")
29 except OSError: 29 except OSError:
30 newmtime = 0 30 newmtime = 0
31 31
32 if newmtime > mtime: 32 if newmtime > mtime:
33 bb.note("Configuration changed, recompile will be forced") 33 bb.note("Configuration changed, recompile will be forced")
34 bb.build.write_taint('do_compile', d) 34 bb.build.write_taint('do_compile', d)
35} 35}
36do_menuconfig[depends] += "ncurses-native:do_populate_sysroot" 36do_menuconfig[depends] += "ncurses-native:do_populate_sysroot"
37do_menuconfig[nostamp] = "1" 37do_menuconfig[nostamp] = "1"