mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 19:56:18 +00:00
kconfig: move lxdialog to scripts/kconfig/lxdialog
The only lxdialog user i kconfig - for menuconfig. So move it to reflect this. Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
This commit is contained in:
parent
e067e1f98d
commit
6f6046cff2
15 changed files with 5 additions and 4 deletions
|
@ -19,4 +19,4 @@ subdir-$(CONFIG_MODVERSIONS) += genksyms
|
||||||
subdir-$(CONFIG_MODULES) += mod
|
subdir-$(CONFIG_MODULES) += mod
|
||||||
|
|
||||||
# Let clean descend into subdirs
|
# Let clean descend into subdirs
|
||||||
subdir- += basic lxdialog kconfig package
|
subdir- += basic kconfig package
|
||||||
|
|
|
@ -11,7 +11,7 @@ gconfig: $(obj)/gconf
|
||||||
$< arch/$(ARCH)/Kconfig
|
$< arch/$(ARCH)/Kconfig
|
||||||
|
|
||||||
menuconfig: $(obj)/mconf
|
menuconfig: $(obj)/mconf
|
||||||
$(Q)$(MAKE) $(build)=scripts/lxdialog
|
$(Q)$(MAKE) $(build)=scripts/kconfig/lxdialog
|
||||||
$< arch/$(ARCH)/Kconfig
|
$< arch/$(ARCH)/Kconfig
|
||||||
|
|
||||||
config: $(obj)/conf
|
config: $(obj)/conf
|
||||||
|
@ -115,6 +115,7 @@ endif
|
||||||
|
|
||||||
clean-files := lkc_defs.h qconf.moc .tmp_qtcheck \
|
clean-files := lkc_defs.h qconf.moc .tmp_qtcheck \
|
||||||
.tmp_gtkcheck zconf.tab.c lex.zconf.c zconf.hash.c
|
.tmp_gtkcheck zconf.tab.c lex.zconf.c zconf.hash.c
|
||||||
|
subdir- += lxdialog
|
||||||
|
|
||||||
# Needed for systems without gettext
|
# Needed for systems without gettext
|
||||||
KBUILD_HAVE_NLS := $(shell \
|
KBUILD_HAVE_NLS := $(shell \
|
||||||
|
|
|
@ -58,7 +58,7 @@
|
||||||
|
|
||||||
#include "dialog.h"
|
#include "dialog.h"
|
||||||
|
|
||||||
#define ITEM_IDENT 4 /* Indent of menu entries. Fixed for all menus */
|
#define ITEM_IDENT 1 /* Indent of menu entries. Fixed for all menus */
|
||||||
static int menu_width;
|
static int menu_width;
|
||||||
|
|
||||||
/*
|
/*
|
|
@ -325,7 +325,7 @@ static void cprint_init(void)
|
||||||
memset(args, 0, sizeof(args));
|
memset(args, 0, sizeof(args));
|
||||||
indent = 0;
|
indent = 0;
|
||||||
child_count = 0;
|
child_count = 0;
|
||||||
cprint("./scripts/lxdialog/lxdialog");
|
cprint("./scripts/kconfig/lxdialog/lxdialog");
|
||||||
cprint("--backtitle");
|
cprint("--backtitle");
|
||||||
cprint(menu_backtitle);
|
cprint(menu_backtitle);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue