From b904b98221d30f2962f4372b9dfea06554b621b5 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Mon, 11 Aug 2008 10:49:57 +0100 Subject: tools build: add cross-install to find the right "strip" Signed-off-by: Aron Griffis --- tools/cross-install | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 tools/cross-install (limited to 'tools/cross-install') diff --git a/tools/cross-install b/tools/cross-install new file mode 100755 index 0000000000..2b67bb34cf --- /dev/null +++ b/tools/cross-install @@ -0,0 +1,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 "$@" -- cgit v1.2.3