michael@0: #!/bin/sh michael@0: michael@0: for i in autoconf; do michael@0: echo "$i" michael@0: $i michael@0: if [ $? -ne 0 ]; then michael@0: echo "Error $? in $i" michael@0: exit 1 michael@0: fi michael@0: done michael@0: michael@0: echo "./configure --enable-autogen $@" michael@0: ./configure --enable-autogen $@ michael@0: if [ $? -ne 0 ]; then michael@0: echo "Error $? in ./configure" michael@0: exit 1 michael@0: fi