1*bf6039f0SWarner Losh#!/bin/sh 2*bf6039f0SWarner Losh 3*bf6039f0SWarner Loshfor i in autoconf; do 4*bf6039f0SWarner Losh echo "$i" 5*bf6039f0SWarner Losh $i 6*bf6039f0SWarner Losh if [ $? -ne 0 ]; then 7*bf6039f0SWarner Losh echo "Error $? in $i" 8*bf6039f0SWarner Losh exit 1 9*bf6039f0SWarner Losh fi 10*bf6039f0SWarner Loshdone 11*bf6039f0SWarner Losh 12*bf6039f0SWarner Loshecho "./configure --enable-autogen $@" 13*bf6039f0SWarner Losh./configure --enable-autogen $@ 14*bf6039f0SWarner Loshif [ $? -ne 0 ]; then 15*bf6039f0SWarner Losh echo "Error $? in ./configure" 16*bf6039f0SWarner Losh exit 1 17*bf6039f0SWarner Loshfi 18