summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@redhat.com>2007-01-26 11:12:56 +0000
committerDaniel Veillard <veillard@redhat.com>2007-01-26 11:12:56 +0000
commitf873796e205548370d8ea2fb107af2800b9f90fe (patch)
tree1400aaba198512bfa907112dfed1c2f19b6b700d /autogen.sh
parent6d153563be17ac1feb9fd94c53f191651de9dd4a (diff)
downloadlibvirt-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-xautogen.sh8
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."
+}