23 lines
1.1 KiB
Diff
23 lines
1.1 KiB
Diff
Index: gdm-2.24.0/gui/simple-greeter/gdm-languages.c
|
|
===================================================================
|
|
--- gdm-2.24.0.orig/gui/simple-greeter/gdm-languages.c
|
|
+++ gdm-2.24.0/gui/simple-greeter/gdm-languages.c
|
|
@@ -482,7 +482,7 @@ select_dirs (const struct dirent *dirent
|
|
struct stat st;
|
|
char *path;
|
|
|
|
- path = g_build_filename (GNOMELOCALEDIR, dirent->d_name, NULL);
|
|
+ path = g_build_filename (LIBLOCALEDIR, dirent->d_name, NULL);
|
|
if (g_stat (path, &st) == 0) {
|
|
mode = st.st_mode;
|
|
}
|
|
@@ -502,7 +502,7 @@ collect_locales_from_directory (void)
|
|
int ndirents;
|
|
int cnt;
|
|
|
|
- ndirents = scandir (GNOMELOCALEDIR, &dirents, select_dirs, alphasort);
|
|
+ ndirents = scandir (LIBLOCALEDIR, &dirents, select_dirs, alphasort);
|
|
|
|
for (cnt = 0; cnt < ndirents; ++cnt) {
|
|
add_locale (dirents[cnt]->d_name);
|