From c9951bd0997f38912140da432450789ccc88f6a3 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 26 Aug 2008 21:55:42 +0000 Subject: [PATCH] Search $DATADIR/girepository instead of $DATADIR/gitypelibs; this naming 2008-08-26 Colin Walters * girepository/girepository.c: Search $DATADIR/girepository instead of $DATADIR/gitypelibs; this naming makes it clearer that e.g. jgir can install .jars there. * gir/Makefile.am: Install there. svn path=/trunk/; revision=502 --- girepository.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/girepository.c b/girepository.c index e77406d56..e87df1c3f 100644 --- a/girepository.c +++ b/girepository.c @@ -93,7 +93,7 @@ init_globals () search_path = NULL; for (dir = datadirs; *dir; dir++) { - char *path = g_build_filename (*dir, "gitypelibs", NULL); + char *path = g_build_filename (*dir, "girepository", NULL); search_path = g_slist_prepend (search_path, path); } search_path = g_slist_reverse (search_path);