After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 300530 - clearlooks engine is installed in a different directory than the other engines
clearlooks engine is installed in a different directory than the other engines
Status: RESOLVED FIXED
Product: gtk-engines
Classification: Deprecated
Component: general
2.6.x
Other All
: Normal normal
: ---
Assigned To: gtk-engines maintainers
gtk-engines maintainers
Depends on:
Blocks:
 
 
Reported: 2005-04-13 17:52 UTC by Christian Krause
Modified: 2005-05-14 00:17 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Christian Krause 2005-04-13 17:52:18 UTC
Please describe the problem:
clearlooks engine is installed in 
/usr/lib/gtk-2.0/engines/
and not in
/usr/lib/gtk-2.0/2.4.0/engines/
as the other engines.
This is caused by using this
enginedir = $(libdir)/gtk-2.0/$(GTK2_VERSION)/engines
and not
enginedir = $(libdir)/gtk-2.0/$(GTK_VERSION)/engines
. The variable GTK2_VERSION is not found in the configure and so it will
evaluate to an empty string. It seems this is just a little typo.

Steps to reproduce:


Actual results:


Expected results:


Does this happen every time?


Other information:
This little patch fixes the problem:
---------------------------------
diff -uNr gtk-engines-2.6.3.old/engines/clearlooks/Makefile.am
gtk-engines-2.6.3/engines/clearlooks/Makefile.am
--- gtk-engines-2.6.3.old/engines/clearlooks/Makefile.am        2005-04-12
17:55:07.000000000 +0200
+++ gtk-engines-2.6.3/engines/clearlooks/Makefile.am    2005-04-13
19:42:46.000000000 +0200
@@ -1,6 +1,6 @@
 INCLUDES = $(GTK_CFLAGS)

-enginedir = $(libdir)/gtk-2.0/$(GTK2_VERSION)/engines
+enginedir = $(libdir)/gtk-2.0/$(GTK_VERSION)/engines
 engine_LTLIBRARIES = libclearlooks.la

 libclearlooks_la_SOURCES =             \

---------------------------------
Comment 1 Glynn Foster 2005-05-14 00:17:07 UTC
I've committed this change back to HEAD.