aboutsummaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf13
1 files changed, 9 insertions, 4 deletions
diff --git a/buildconf b/buildconf
index e8baeee10..b6ec7e2d5 100755
--- a/buildconf
+++ b/buildconf
@@ -1,6 +1,11 @@
#!/bin/sh
-automake Makefile
-aclocal
-autoheader
-autoconf
+die(){
+ echo "$@"
+ exit
+}
+
+automake Makefile || die "The command 'automake Makefile' failed"
+aclocal || die "The command 'aclocal' failed"
+autoheader || die "The command 'autoheader' failed"
+autoconf || die "The command 'autoconf' failed"