Compile Guile modules with `-Wunbound-variable'.
authorLudovic Courtès <ludo@gnu.org>
Thu, 22 Oct 2009 20:58:03 +0000 (22:58 +0200)
committerLudovic Courtès <ludo@gnu.org>
Thu, 22 Oct 2009 20:58:03 +0000 (22:58 +0200)
* am/guilec (.scm.go): Compile with `-Wunbound-variable'.

am/guilec

index ce0711b..00366d8 100644 (file)
--- a/am/guilec
+++ b/am/guilec
@@ -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 "$@" "$<"