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 321500 - Makefile.am in components/catalog-view is broken
Makefile.am in components/catalog-view is broken
Status: RESOLVED FIXED
Product: gthumb
Classification: Other
Component: general
2.6.x
Other Linux
: Normal critical
: ---
Assigned To: Paolo Bacchilega
Paolo Bacchilega
Depends on:
Blocks:
 
 
Reported: 2005-11-15 08:02 UTC by Joslwah
Modified: 2005-11-15 09:13 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Joslwah 2005-11-15 08:02:14 UTC
Version details: 2.7.x unchecked.  
Distribution/Version: gento, but error is in original source.

Do a parallel make.  Frequently this will fail due to race condition.

Fix is:
  In components/catalog-view/Makefile.am change 

GNOME_GThumb_CatalogView.server.in: GNOME_GThumb_CatalogView.server.in.in Makefi
le
        sed -e "s|\@LIBEXECDIR\@|$(libexecdir)|g" \
        < $(srcdir)/GNOME_GThumb_CatalogView.server.in.in > temp \
        && mv temp GNOME_GThumb_CatalogView.server.in


to

GNOME_GThumb_CatalogView.server.in: GNOME_GThumb_CatalogView.server.in.in Makefi
le
        sed -e "s|\@LIBEXECDIR\@|$(libexecdir)|g" \
        < $(srcdir)/GNOME_GThumb_CatalogView.server.in.in > temp.server \
        && mv temp.server GNOME_GThumb_CatalogView.server.in



Probably also a good idea to rename the temp in GNOME_GThumb_CatalogView.xml
case as well so this doesn't happen again.
Comment 1 Paolo Bacchilega 2005-11-15 09:13:27 UTC
fixed in current CVS, thanks.