diff options
| author | Daniel Macks <dmacks@netspace.org> | 2009-02-11 21:56:55 -0500 | 
|---|---|---|
| committer | William Jon McCann <jmccann@redhat.com> | 2009-02-11 21:56:55 -0500 | 
| commit | b550333228b73bb3ed4a55ec74baade1bdded0ff (patch) | |
| tree | bfbd02a17fe4a7851c777665cd2d3d260d531fef | |
| parent | 87703597e24ba94c400ac8878a6835d86571da91 (diff) | |
clearer diagnostic if platform back-end isn't implemented
Error if no backend for target host
| -rw-r--r-- | configure.ac | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index cf098de..6dbca0f 100644 --- a/configure.ac +++ b/configure.ac @@ -190,6 +190,9 @@ case "$host" in          *-*-solaris*)          CK_BACKEND="solaris"          ;; +	*) +	AC_MSG_ERROR([No sysdeps back-end implemented for host $host]) +	;;  esac  AC_SUBST(KVM_LIBS)  | 
