Sha256: 19c931a1cfa80e69f30a1e54605803937a066bcc254e1d27037b5b291b94ee55
Contents?: true
Size: 538 Bytes
Versions: 21
Compression:
Stored size: 538 Bytes
Contents
#!/bin/sh # $Id$ if [ "$1" = "--force" ]; then FORCE=--force NOFORCE= FORCE_MISSING=--force-missing else FORCE= NOFORCE=--no-force FORCE_MISSING= fi libtoolize --copy $FORCE 2>&1 | sed '/^You should/d' || { echo "libtoolize failed!" exit 1 } aclocal $FORCE || { echo "aclocal failed!" exit 1 } autoheader $FORCE || { echo "autoheader failed!" exit 1 } automake -a -c $NOFORCE || { echo "automake failed!" exit 1 } autoconf $FORCE || { echo "autoconf failed!" exit 1 }
Version data entries
21 entries across 21 versions & 2 rubygems