GNOME Bugzilla – Bug 82684
Makefile Error in ./sysdeps/guile ./sysdeps/guile/names
Last modified: 2009-08-15 18:40:50 UTC
Make fails: [guile.x] Error 1 Looking at the ./sysdeps/guile/Makefile I found: guile.x: guile.c guile-snarf $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $< > $@ Change it to: guile.x: guile.c guile-snarf $< $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) > $@ Looking at the ./sysdeps/guile/names/Makefile I found: guile-names.x: guile-names.c guile-snarf $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $< > $@ Change it to: guile-names.x: guile-names.c guile-snarf $< $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) > $@
Met the same bug, the same solution: Building against latest guile fails - new guile-snarf needs .c file name as first argument of command line, not last, as libgtop-1.0.13 uses. Because nobody has fixed it yet, I have submitted it to CVS branch LIBGTOP_STABLE_1_0.
Is this problem still in 2.0.x then? If so could you attach the patch here?
Based on the previous comment I think this has been merged into HEAD as well. Closing.