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 82684 - Makefile Error in ./sysdeps/guile ./sysdeps/guile/names
Makefile Error in ./sysdeps/guile ./sysdeps/guile/names
Status: VERIFIED INCOMPLETE
Product: libgtop
Classification: Core
Component: linux
1.0.13
Other Linux
: Normal normal
: ---
Assigned To: Martin Baulig
Martin Baulig
Depends on:
Blocks:
 
 
Reported: 2002-05-23 01:17 UTC by Kolby Olsen
Modified: 2009-08-15 18:40 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Kolby Olsen 2002-05-23 01:17:41 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) > $@
Comment 1 Stanislav Brabec 2002-12-11 13:13:49 UTC
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.
Comment 2 Kjartan Maraas 2003-06-10 16:37:03 UTC
Is this problem still in 2.0.x then? If so could you attach the patch
here?
Comment 3 Kjartan Maraas 2004-03-04 21:49:36 UTC
Based on the previous comment I think this has been merged into HEAD
as well. Closing.