kconfig: allow build-time definition of the internal config prefix
[pandora-kernel.git] / scripts / kconfig / menu.c
index 4fb5902..64da30c 100644 (file)
@@ -566,7 +566,7 @@ void menu_get_ext_help(struct menu *menu, struct gstr *help)
 
        if (menu_has_help(menu)) {
                if (sym->name) {
 
        if (menu_has_help(menu)) {
                if (sym->name) {
-                       str_printf(help, "CONFIG_%s:\n\n", sym->name);
+                       str_printf(help, "%s%s:\n\n", CONFIG_, sym->name);
                        str_append(help, _(menu_get_help(menu)));
                        str_append(help, "\n");
                }
                        str_append(help, _(menu_get_help(menu)));
                        str_append(help, "\n");
                }