Skip to content

Commit e06030c

Browse files
committed
kconfig: gconf: rename gconf.glade to gconf.ui
The next commit will convert this file to GtkBuilder format. Rename it in advance to reflect the intended format. Signed-off-by: Masahiro Yamada <[email protected]> Acked-by: Randy Dunlap <[email protected]> Tested-by: Randy Dunlap <[email protected]>
1 parent 894ad40 commit e06030c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

scripts/kconfig/gconf.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1327,11 +1327,11 @@ int main(int ac, char *av[])
13271327
/* Determine GUI path */
13281328
env = getenv(SRCTREE);
13291329
if (env)
1330-
glade_file = g_strconcat(env, "/scripts/kconfig/gconf.glade", NULL);
1330+
glade_file = g_strconcat(env, "/scripts/kconfig/gconf.ui", NULL);
13311331
else if (av[0][0] == '/')
1332-
glade_file = g_strconcat(av[0], ".glade", NULL);
1332+
glade_file = g_strconcat(av[0], ".ui", NULL);
13331333
else
1334-
glade_file = g_strconcat(g_get_current_dir(), "/", av[0], ".glade", NULL);
1334+
glade_file = g_strconcat(g_get_current_dir(), "/", av[0], ".ui", NULL);
13351335

13361336
/* Conf stuffs */
13371337
if (ac > 1 && av[1][0] == '-') {
File renamed without changes.

0 commit comments

Comments
 (0)