git-subtree-dir: cde/programs/dtksh/ksh93 git-subtree-split: 66e1d446429543be0f9d47d9364e472932dc53f1
23 lines
364 B
Plaintext
Executable File
23 lines
364 B
Plaintext
Executable File
: linux.i386-64 icc wrapper : 2011-10-18 :
|
|
|
|
HOSTTYPE=linux.i386-64-icc
|
|
|
|
case " $* " in
|
|
*" -dumpmachine "*) echo $HOSTTYPE; exit ;;
|
|
esac
|
|
|
|
icc=$(which icc 2>/dev/null)
|
|
case $icc in
|
|
"") if test -f /etc/profile.d/icc.sh
|
|
then . /etc/profile.d/icc.sh
|
|
fi
|
|
icc=$(which icc 2>/dev/null)
|
|
case $icc in
|
|
"") echo icc: not found >&2
|
|
exit 127
|
|
;;
|
|
esac
|
|
;;
|
|
esac
|
|
$icc "$@"
|