kumquat-buildroot/toolchain/dependencies/check-host-sed.sh

36 lines
578 B
Bash
Raw Normal View History

#!/bin/sh
SEDLIST="/usr/bin/sed /bin/sed sed gnused gsed"
for SED in $SEDLIST
do
if ! test -x $SED ; then
2007-05-11 14:50:15 +02:00
SED=$(which $SED 2> /dev/null)
if ! test -x "$SED" > /dev/null ; then
SED=""
continue
fi
fi
tmp=$(mktemp)
echo "HELLO" > $tmp
$SED -i -e "s/HELLO/GOODBYE/" $tmp >/dev/null 2>&1
RESULT=$(cat $tmp)
if test $? != 0 ; then
SED=""
elif test -e ".sedtest-e" ; then
rm -f ".sedtest-e"
SED=""
2007-03-12 09:55:20 +01:00
elif [ "x$RESULT" = "x" ] || [ "$RESULT" != "GOODBYE" ] > /dev/null ;
then
SED=""
fi
rm -f $tmp
if [ ! -z "$SED" ] ; then
break
fi
done
echo $SED