Sha256: 7590a052aa09d91f87821714e52d14a742302e0a12d7c11d94119b89e9ba445a
Contents?: true
Size: 759 Bytes
Versions: 6
Compression:
Stored size: 759 Bytes
Contents
#! /bin/sh if glibtoolize --version > /dev/null 2>&1; then LIBTOOLIZE='glibtoolize' else LIBTOOLIZE='libtoolize' fi command -v command >/dev/null 2>&1 || { echo "command is required, but wasn't found on this system" exit 1 } command -v $LIBTOOLIZE >/dev/null 2>&1 || { echo "libtool is required, but wasn't found on this system" exit 1 } command -v autoconf >/dev/null 2>&1 || { echo "autoconf is required, but wasn't found on this system" exit 1 } command -v automake >/dev/null 2>&1 || { echo "automake is required, but wasn't found on this system" exit 1 } if autoreconf --version > /dev/null 2>&1 ; then exec autoreconf -ivf fi $LIBTOOLIZE && \ aclocal && \ automake --add-missing --force-missing --include-deps && \ autoconf
Version data entries
6 entries across 6 versions & 2 rubygems