blob: bf62a814049a6b25704688466b4af7354807e601 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#! /bin/sh
if test \( $# -gt 1 \) -a \( $1 = "--mode=install" \); then
shift;
echo " libtoolkludge running \"$*\""
$*
exit 0
else
echo "Libtoolkludge is a kludge for libtool --mode=install only. Die!" >&2
exit 1
fi
|