| gobry | e721a52 | 2002-03-22 13:38:30 +0000 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |||||
| bart | 523f14e | 2011-10-22 14:38:47 +0000 | [diff] [blame] | 3 | run () |
| 4 | { | ||||
| 5 | echo "running: $*" | ||||
| 6 | eval $* | ||||
| 7 | |||||
| 8 | if test $? != 0 ; then | ||||
| 9 | echo "error: while running '$*'" | ||||
| 10 | exit 1 | ||||
| 11 | fi | ||||
| 12 | } | ||||
| 13 | |||||
| 14 | run aclocal | ||||
| 15 | run autoheader | ||||
| 16 | run automake -a | ||||
| 17 | run autoconf | ||||