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