1#!/bin/sh
2
3# prepend CROSS_BIN_PATH to find the right "strip"
4if [ -n "$CROSS_BIN_PATH" ]; then
5    PATH="$CROSS_BIN_PATH:$PATH"
6fi
7
8exec $_INSTALL "$@"
9