diff options
author | Ludovic Courtès <ludo@gnu.org> | 2008-08-25 11:20:02 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2008-08-25 22:08:45 +0200 |
commit | bfb2e1135842460d450cd514b8ef692a752db26c (patch) | |
tree | 6d0d9bfe7eb8a82c651faa6327c1c89ef2749d44 /srfi | |
parent | 4b7513463d20acca02ed233583fef958352f2c71 (diff) | |
download | guile-bfb2e1135842460d450cd514b8ef692a752db26c.tar.gz |
Use $(GCC_CFLAGS) for `-Werror' et al. so that it's not used to compile
Gnulib code.
Diffstat (limited to 'srfi')
-rw-r--r-- | srfi/ChangeLog | 4 | ||||
-rw-r--r-- | srfi/Makefile.am | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/srfi/ChangeLog b/srfi/ChangeLog index f35b25e16..5cba7e7b5 100644 --- a/srfi/ChangeLog +++ b/srfi/ChangeLog @@ -1,3 +1,7 @@ +2008-08-25 Ludovic Courtès <ludo@gnu.org> + + * Makefile.am (AM_CFLAGS): New. + 2008-06-28 Ludovic Courtès <ludo@gnu.org> * Makefile.am (INCLUDES): Renamed to... diff --git a/srfi/Makefile.am b/srfi/Makefile.am index 64858cd27..bb69bbbf2 100644 --- a/srfi/Makefile.am +++ b/srfi/Makefile.am @@ -29,6 +29,8 @@ DEFS = @DEFS@ @EXTRA_DEFS@ AM_CPPFLAGS = -I.. -I$(srcdir)/.. \ -I$(top_srcdir)/lib -I$(top_builddir)/lib +AM_CFLAGS = $(GCC_CFLAGS) + srfiincludedir = $(pkgincludedir)/srfi # These headers are visible as <guile/srfi/mumble.h> |