From 5c1c126647779efb31469c2d5be472f3a1c4e47e Mon Sep 17 00:00:00 2001 From: JuniorJPDJ Date: Sat, 13 Mar 2021 19:10:39 +0100 Subject: [PATCH] kconfig edit: removed gconfig support (MR 2034) alpine removed [1] support for libglade, which is needed for gconfig to work [1] https://gitlab.alpinelinux.org/alpine/aports/-/commit/a2d7250043c4a176e5b5a3661b66fb9a4f71567e --- pmb/build/menuconfig.py | 4 ---- pmb/parse/arguments.py | 3 --- 2 files changed, 7 deletions(-) diff --git a/pmb/build/menuconfig.py b/pmb/build/menuconfig.py index 70bb4e4d..3d95ca6e 100644 --- a/pmb/build/menuconfig.py +++ b/pmb/build/menuconfig.py @@ -102,10 +102,6 @@ def menuconfig(args, pkgname): depends += ["qt5-qtbase-dev", "font-noto"] kopt = "xconfig" copy_xauth = True - elif args.gconfig: - depends += ["gtk+2.0-dev", "glib-dev", "libglade-dev", "font-noto"] - kopt = "gconfig" - copy_xauth = True elif args.nconfig: kopt = "nconfig" depends += ["ncurses-dev"] diff --git a/pmb/parse/arguments.py b/pmb/parse/arguments.py index c9c742e3..267fb439 100644 --- a/pmb/parse/arguments.py +++ b/pmb/parse/arguments.py @@ -437,9 +437,6 @@ def arguments_kconfig(subparser): edit.add_argument("-x", dest="xconfig", action="store_true", help="use xconfig rather than menuconfig for kernel" " configuration") - edit.add_argument("-g", dest="gconfig", action="store_true", - help="use gconfig rather than menuconfig for kernel" - " configuration") edit.add_argument("-n", dest="nconfig", action="store_true", help="use nconfig rather than menuconfig for kernel" " configuration")