summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2011-08-18 00:25:58 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2011-08-18 00:26:14 -0500
commit2a9692a4650afc3c5eed1e4e84fb871846e5001a (patch)
tree794397a5925fc0837ebcb8719b128c9a15015cf1 /autogen.sh
parent91f85b294b7c71223b471279060f7a07d3c9bbd0 (diff)
have autogen.sh return an erro if configure failed
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 30b1ae409d71..7df437bddcdb 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -148,7 +148,7 @@ if (defined $ENV{NOCONFIGURE}) {
}
}
print "running ./configure with '" . join ("' '", @args), "'\n";
- system ("./configure", @args);
+ system ("./configure", @args) && die "Error running configure";
}
# Local Variables: