diff options
author | Ludovic Courtès <ludo@gnu.org> | 2009-10-22 22:58:03 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2009-10-22 22:58:03 +0200 |
commit | 04c68c039194f33d5bd7e8b1f21eba7c8bd6adbe (patch) | |
tree | 4ac0b546bba3729e724ccb2b4b41f857f5530ece /am | |
parent | 84012ef4b1188770d8087ad82289dbdc27a3adfb (diff) |
Compile Guile modules with `-Wunbound-variable'.
* am/guilec (.scm.go): Compile with `-Wunbound-variable'.
Diffstat (limited to 'am')
-rw-r--r-- | am/guilec | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -30,4 +30,6 @@ install-data-hook: SUFFIXES = .scm .go .scm.go: - GUILE_AUTO_COMPILE=0 $(top_builddir)/meta/uninstalled-env guile-tools compile -o "$@" "$<" + GUILE_AUTO_COMPILE=0 \ + $(top_builddir)/meta/uninstalled-env \ + guile-tools compile -Wunbound-variable -o "$@" "$<" |