pmb: fix kconfig edit

Using the default UI (menuconfig) was broken since 8268dc0e, where
logging was rewritten. The wrong output mode has been used, "tui" is
the right one.
This commit is contained in:
Oliver Smith 2018-07-25 00:46:22 +02:00
parent 74bf43cf5f
commit ed59e38e62
No known key found for this signature in database
GPG Key ID: 5AE7F5513E0885CB
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ def menuconfig(args, pkgname):
outputdir = get_outputdir(args, pkgname)
logging.info("(native) make " + kopt)
pmb.chroot.user(args, ["make", kopt], "native",
outputdir, output="interactive",
outputdir, output="tui",
env={"ARCH": pmb.parse.arch.alpine_to_kernel(arch),
"DISPLAY": os.environ.get("DISPLAY"),
"XAUTHORITY": "/home/pmos/.Xauthority"})