diff options
Diffstat (limited to 'libtoolkludge')
-rw-r--r-- | libtoolkludge | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libtoolkludge b/libtoolkludge new file mode 100644 index 0000000..bf62a81 --- /dev/null +++ b/libtoolkludge @@ -0,0 +1,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 |