diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-09-10 20:21:42 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-09-10 20:21:42 +0000 |
commit | 44ab8170971bfee1ad9a68e1024bb3c04e3a9c4b (patch) | |
tree | f66ec1c40c5a0bbc177a8c9801fccba8178b2e11 | |
parent | 370646da5b9eb110eb05a694f8a6cfc3439496ad (diff) | |
download | guile-44ab8170971bfee1ad9a68e1024bb3c04e3a9c4b.tar.gz |
* Makefile.am (.x.doc): Bugfix: Added $(srcdir) to path in order
to allow for builds in separate tree.
-rw-r--r-- | libguile/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/Makefile.am b/libguile/Makefile.am index 3987240f0..e2a5d82e9 100644 --- a/libguile/Makefile.am +++ b/libguile/Makefile.am @@ -185,7 +185,7 @@ SUFFIXES = .x .doc PATH=.:${PATH} ./guile-doc-snarf $< $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $< > $@ \ || { rm $@; false; } .x.doc: - PATH=.:${PATH} ./guile-doc-snarf $*.c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $*.c > /dev/null \ + PATH=.:${PATH} ./guile-doc-snarf $(srcdir)/$*.c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(srcdir)/$*.c > /dev/null \ || { rm $@; false; } error.x: cpp_err_symbols.c |