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