diff --git a/Makefile b/Makefile index 565158f16e..7286a0d510 100644 --- a/Makefile +++ b/Makefile @@ -978,7 +978,7 @@ uninstall-all: _uninstall menuselect: build_tools/menuselect makeopts.xml -@build_tools/menuselect ${GLOBAL_MAKEOPTS} ${USER_MAKEOPTS} menuselect.makeopts && echo "menuselect changes saved!" || echo "menuselect changes NOT saved!" -build_tools/menuselect: build_tools/menuselect.c build_tools/menuselect.h mxml/libmxml.a +build_tools/menuselect: build_tools/menuselect.c build_tools/menuselect_curses.c build_tools/menuselect.h mxml/libmxml.a include/autoconfig.h $(MAKE) -C build_tools menuselect mxml/libmxml.a: diff --git a/build_tools/menuselect_curses.c b/build_tools/menuselect_curses.c index 86efa6000b..ed30c917d1 100644 --- a/build_tools/menuselect_curses.c +++ b/build_tools/menuselect_curses.c @@ -237,6 +237,7 @@ void draw_title_window(WINDOW *title) wmove(title, 3, (max_x / 2) - (strlen(MENU_TITLE3) / 2)); waddstr(title, MENU_TITLE3); wmove(title, 0, 0); + waddstr(title, "Press 'h' for help"); wrefresh(title); }