1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

* Makefile.am: Augment path when running guile-doc-snarf so

guile-func-name-check is found.
This commit is contained in:
Maciej Stachowiak 2000-01-15 03:24:25 +00:00
parent dc91415623
commit b9af3d0e02
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2000-01-14 <mstachow@alum.mit.edu>
* Makefile.am: Augment path when running guile-doc-snarf so
guile-func-name-check is found.
Wed Jan 12 00:06:53 2000 Greg J. Badros <gjb@cs.washington.edu> Wed Jan 12 00:06:53 2000 Greg J. Badros <gjb@cs.washington.edu>
* net_db.c (s_scm_inet_makeaddr): Use SCM_NUM2ULONG since that's * net_db.c (s_scm_inet_makeaddr): Use SCM_NUM2ULONG since that's

View file

@ -161,10 +161,10 @@ libpath.h: $(srcdir)/Makefile.in $(top_builddir)/config.status
SUFFIXES = .x .doc SUFFIXES = .x .doc
.c.x: .c.x:
./guile-doc-snarf $< $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $< > $@ \ PATH=.:${PATH} ./guile-doc-snarf $< $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $< > $@ \
|| { rm $@; false; } || { rm $@; false; }
.c.doc: .c.doc:
./guile-doc-snarf $< $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $< \ PATH=.:${PATH} ./guile-doc-snarf $< $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $< \
|| { rm $@; false; } || { rm $@; false; }
## GJB:FIXME:: this is ugly; generate the *.doc files from the *.x file list, above ## GJB:FIXME:: this is ugly; generate the *.doc files from the *.x file list, above