Sha256: 51b6c75c3db6e0a2395be712814133adb7f43981a08a94b4e2ffe155823b7de7
Contents?: true
Size: 539 Bytes
Versions: 21
Compression:
Stored size: 539 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