diff options
-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) |