1#!/bin/sh 2 3set -xe 4 5for c in autoconf automake libtoolize autoreconf; do 6 type $c || exit 1 7done 8 9autoreconf -vfi 10