diff options
author | Cyprien Nicolas (fulax) <c.nicolas+gitorious@gmail.com> | 2012-08-26 13:37:37 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-08-27 15:44:32 +0200 |
commit | 73f9a978ef2bf0c0b115115e8837504636b8bbca (patch) | |
tree | 7631fd974f8bc4dff67355814e54f0188ec7f3da | |
parent | 8f6201a31f54ac7a6ea028a2980a783abc8b1369 (diff) | |
download | patches-73f9a978ef2bf0c0b115115e8837504636b8bbca.tar patches-73f9a978ef2bf0c0b115115e8837504636b8bbca.tar.gz |
configure.ac: Make 'guild' configure check fatal, otherwise one gets 'compile: command not found' during make
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 0683fd5ceb..3c7150fc75 100644 --- a/configure.ac +++ b/configure.ac @@ -22,6 +22,9 @@ AC_CANONICAL_HOST PKG_CHECK_MODULES([GUILE], [guile-2.0]) AC_PATH_PROG([GUILE], [guile]) AC_PATH_PROG([GUILD], [guild]) +if test "x$GUILD" = "x"; then + AC_MSG_ERROR(['guild' binary not found; please check your guile-2.x installation.]) +fi AC_ARG_WITH([nix-prefix], [AS_HELP_STRING([--with-nix-prefix=DIR], [search for Nix in DIR])], |