summaryrefslogtreecommitdiff
path: root/tools/cross-install
blob: 1177335aa5a207c064d2707d0a01d6e0818e0c26 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

# prepend CROSS_BIN_PATH to find the right "strip"
if [ -n "$CROSS_BIN_PATH" ]; then
    PATH="$CROSS_BIN_PATH:$PATH"
fi

exec $_INSTALL "$@"