kconfig edit: removed gconfig support (MR 2034)

alpine removed [1] support for libglade, which is needed for gconfig to work
[1] a2d7250043
This commit is contained in:
JuniorJPDJ 2021-03-13 19:10:39 +01:00
parent 2b17e6ab71
commit 5c1c126647
No known key found for this signature in database
GPG Key ID: 5AE7F5513E0885CB
2 changed files with 0 additions and 7 deletions

View File

@ -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"]

View File

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