diff options
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -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" |