1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

Compile Guile modules with `-Wunbound-variable'.

* am/guilec (.scm.go): Compile with `-Wunbound-variable'.
This commit is contained in:
Ludovic Courtès 2009-10-22 22:58:03 +02:00
parent 84012ef4b1
commit 04c68c0391

View file

@ -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 "$@" "$<"