12-fix-glade-file-path.patch 500 B

1234567891011121314151617
  1. ---
  2. gconf.c | 2 +-
  3. 1 file changed, 1 insertion(+), 1 deletion(-)
  4. Index: b/gconf.c
  5. ===================================================================
  6. --- a/gconf.c
  7. +++ b/gconf.c
  8. @@ -1486,7 +1486,7 @@
  9. /* Determine GUI path */
  10. env = getenv(SRCTREE);
  11. if (env)
  12. - glade_file = g_strconcat(env, "/scripts/kconfig/gconf.glade", NULL);
  13. + glade_file = g_strconcat(env, "/support/kconfig/gconf.glade", NULL);
  14. else if (av[0][0] == '/')
  15. glade_file = g_strconcat(av[0], ".glade", NULL);
  16. else