GNOME Bugzilla – Bug 372448
Error in Data/Makefile.in causes install to fail
Last modified: 2006-11-08 22:19:06 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:
Thanks - patched Makefile.am to do the equivalent of the above.