diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2003-12-01 18:49:38 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2003-12-01 18:49:38 +0000 |
commit | f1efbdf3f119cfede7a544d1a723dd926a08936f (patch) | |
tree | b3ecea6bf2e5733b433f8ab7581fda6a082271a6 | |
parent | 2d0b85acf860cc48c9d66be21c564f2c21305569 (diff) | |
download | guile-f1efbdf3f119cfede7a544d1a723dd926a08936f.tar.gz |
(snarfcppopts): Added -I$(top_srcdir).
-rw-r--r-- | test-suite/ChangeLog | 4 | ||||
-rw-r--r-- | test-suite/standalone/Makefile.am | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/test-suite/ChangeLog b/test-suite/ChangeLog index 1b3ea457a..6ce29d21a 100644 --- a/test-suite/ChangeLog +++ b/test-suite/ChangeLog @@ -1,3 +1,7 @@ +2003-12-01 Mikael Djurfeldt <mdj@chunk.mit.edu> + + * standalone/Makefile.am (snarfcppopts): Added -I$(top_srcdir). + 2003-11-19 Rob Browning <rlb@defaultvalue.org> * standalone/test-system-cmds: new test. diff --git a/test-suite/standalone/Makefile.am b/test-suite/standalone/Makefile.am index 953b63763..d9969f349 100644 --- a/test-suite/standalone/Makefile.am +++ b/test-suite/standalone/Makefile.am @@ -13,7 +13,8 @@ test_cflags := \ -I$(top_srcdir) \ -I$(top_srcdir)/libguile-ltdl $(EXTRA_DEFS) -snarfcppopts = $(DEFS) $(DEFAULT_INCLUDES) $(CPPFLAGS) $(CFLAGS) +snarfcppopts = \ + $(DEFS) $(DEFAULT_INCLUDES) $(CPPFLAGS) $(CFLAGS) -I$(top_srcdir) %.x: %.c ${top_builddir}/libguile/guile-snarf -o $@ $< $(snarfcppopts) |