aboutsummaryrefslogtreecommitdiff
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
parentMon Jan 23 14:36:18 IST 2007 Mark McLoughlin <markmc@redhat.com> (diff)
downloadlibvirt-f873796e205548370d8ea2fb107af2800b9f90fe.tar.gz
libvirt-f873796e205548370d8ea2fb107af2800b9f90fe.tar.bz2
libvirt-f873796e205548370d8ea2fb107af2800b9f90fe.zip
* 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 d677a1a2a..798eff713 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."
+}