summaryrefslogtreecommitdiff
path: root/am
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-10-22 22:58:03 +0200
committerLudovic Courtès <ludo@gnu.org>2009-10-22 22:58:03 +0200
commit04c68c039194f33d5bd7e8b1f21eba7c8bd6adbe (patch)
tree4ac0b546bba3729e724ccb2b4b41f857f5530ece /am
parent84012ef4b1188770d8087ad82289dbdc27a3adfb (diff)
downloadguile-04c68c039194f33d5bd7e8b1f21eba7c8bd6adbe.tar.gz
Compile Guile modules with `-Wunbound-variable'.
* am/guilec (.scm.go): Compile with `-Wunbound-variable'.
Diffstat (limited to 'am')
-rw-r--r--am/guilec4
1 files changed, 3 insertions, 1 deletions
diff --git a/am/guilec b/am/guilec
index ce0711b74..00366d85e 100644
--- 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 "$@" "$<"