1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00

It seems the guile-snarf syntax has changed in 1.4.1. Update ports which

use the old syntax.

Prompted by:	Mike Harding <mvh@ix.netcom.com>
This commit is contained in:
Joe Marcus Clarke 2002-06-19 21:14:44 +00:00
parent 07916e5fe6
commit cb401c5cb4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=61599
4 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,11 @@
--- sysdeps/guile/Makefile.in.orig Wed Jun 19 16:12:21 2002
+++ sysdeps/guile/Makefile.in Wed Jun 19 16:12:34 2002
@@ -516,7 +516,7 @@
mv gnc-t guile.c
guile.x: guile.c
- guile-snarf $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $< > $@
+ guile-snarf -o $@ $< $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.

View File

@ -0,0 +1,11 @@
--- sysdeps/guile/names/Makefile.in.orig Wed Jun 19 16:13:02 2002
+++ sysdeps/guile/names/Makefile.in Wed Jun 19 16:13:12 2002
@@ -438,7 +438,7 @@
mv gnc-t guile-names.c
guile-names.x: guile-names.c
- guile-snarf $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $< > $@
+ guile-snarf -o $@ $< $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.

View File

@ -0,0 +1,11 @@
--- guile-gnome/Makefile.in.orig Wed Jun 19 16:09:26 2002
+++ guile-gnome/Makefile.in Wed Jun 19 16:09:56 2002
@@ -517,7 +517,7 @@
$(INSTALL_DATA) $(srcdir)/gnome.scm $(scmgnomedir)/gnome.scm
$(INSTALL_DATA) $(srcdir)/gnorba.scm $(scmgnomedir)/gnorba.scm
.c.x:
- guile-snarf $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $< >tmp \
+ guile-snarf -o tmp $< $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) \
&& mv tmp $@
client.x: client.c

View File

@ -0,0 +1,11 @@
--- Makefile.in.orig Wed Jun 19 16:06:19 2002
+++ Makefile.in Wed Jun 19 16:06:50 2002
@@ -623,7 +623,7 @@
$(INSTALL_DATA) $(srcdir)/gtk/repl.scm $(gtkmoduledir)/repl.scm
$(INSTALL_DATA) $(srcdir)/gtk/threads.scm $(gtkmoduledir)/threads.scm
.c.x:
- guile-snarf $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $< >$<.tmp && mv $<.tmp $@
+ guile-snarf -o $<.tmp $< $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) && mv $<.tmp $@
gtk-glue.c: $(gtkdefs) $(gdkdefs) build-guile-gtk
$(BUILD) -I $(srcdir) glue $(gtkdefs) >tmpt && mv tmpt $@