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 372448 - Error in Data/Makefile.in causes install to fail
Error in Data/Makefile.in causes install to fail
Status: RESOLVED FIXED
Product: dasher
Classification: Applications
Component: general
4.3.x
Other Linux
: High critical
: ---
Assigned To: Phil Cowans
Phil Cowans
Depends on:
Blocks:
 
 
Reported: 2006-11-08 13:10 UTC by Joseph Sacco
Modified: 2006-11-08 22:19 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Joseph Sacco 2006-11-08 13:10:35 UTC
Data/Makefile.in references gconftool rather than gconftool-2. A patch is shown below.

-Joseph

==================================================================


--- dasher-4.3.1/Data/Makefile.in-      2006-11-08 08:04:05.000000000 -0500
+++ dasher-4.3.1/Data/Makefile.in       2006-11-08 08:04:21.000000000 -0500
@@ -668,7 +668,7 @@

 @GCONF_SCHEMAS_INSTALL_TRUE@install-schemas: dasher.schemas
 @GCONF_SCHEMAS_INSTALL_TRUE@   GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) \
-@GCONF_SCHEMAS_INSTALL_TRUE@   gconftool --makefile-install-rule dasher.schemas
+@GCONF_SCHEMAS_INSTALL_TRUE@   gconftool-2 --makefile-install-rule dasher.schemas
 @GCONF_SCHEMAS_INSTALL_FALSE@install-data-local:

 install-data-hook:
Comment 1 Phil Cowans 2006-11-08 22:19:06 UTC
Thanks - patched Makefile.am to do the equivalent of the above.