diff options
author | Daniel Veillard <veillard@redhat.com> | 2007-01-26 11:12:56 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@redhat.com> | 2007-01-26 11:12:56 +0000 |
commit | f873796e205548370d8ea2fb107af2800b9f90fe (patch) | |
tree | 1400aaba198512bfa907112dfed1c2f19b6b700d /autogen.sh | |
parent | 6d153563be17ac1feb9fd94c53f191651de9dd4a (diff) | |
download | libvirt-f873796e205548370d8ea2fb107af2800b9f90fe.tar.gz |
* autogen.sh: applied patch from Richard W.M. Jones to not
output instructions if configure failed
Daniel
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/autogen.sh b/autogen.sh index d677a1a2a7..798eff7137 100755 --- a/autogen.sh +++ b/autogen.sh @@ -68,7 +68,7 @@ if test x$OBJ_DIR != x; then cd "$OBJ_DIR" fi -$srcdir/configure "$@" - -echo -echo "Now type 'make' to compile libvirt." +$srcdir/configure "$@" && { + echo + echo "Now type 'make' to compile libvirt." +} |