just check for configure instead of configure.in since configure.ac is

2007-06-18  Jens Granseuer  <jensgr@gmx.net>

	* theme-installer.c: (file_theme_type): just check for configure
	instead of configure.in since configure.ac is valid as well; we still
	need a better way to identify engines...

svn path=/trunk/; revision=7741
This commit is contained in:
Jens Granseuer 2007-06-18 16:21:28 +00:00 committed by Jens Granseuer
parent baa992a9ef
commit 605992d0e7
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2007-06-18 Jens Granseuer <jensgr@gmx.net>
* theme-installer.c: (file_theme_type): just check for configure
instead of configure.in since configure.ac is valid as well; we still
need a better way to identify engines...
2007-06-18 Rodrigo Moya <rodrigo@gnome-db.org>
* appearance-main.c: added the names of the pages to the help strings

View file

@ -122,7 +122,7 @@ file_theme_type (const gchar *dir)
if (exists)
return THEME_METACITY;
filename = g_build_filename (dir, "configure.in", NULL);
filename = g_build_filename (dir, "configure", NULL);
src_uri = gnome_vfs_uri_new (filename);
g_free (filename);
exists = gnome_vfs_uri_exists (src_uri);