1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-16 04:16:34 +03:00
openwrt-xburst/toolchain/sed/sedcheck.sh
mbm a4d8c8e5ca bring up to date with nbd's br2_test20.tar.bz2
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@308 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-03-06 03:53:29 +00:00

22 lines
312 B
Bash
Executable File

#!/bin/sh
if [ -x /usr/bin/sed ]; then
SED="/usr/bin/sed";
else
if [ -x /bin/sed ]; then
SED="/bin/sed";
fi;
fi;
echo "HELLO" > .sedtest
$SED -i -e "s/HELLO/GOODBYE/" .sedtest >/dev/null 2>&1
if [ $? != 0 ] ; then
echo build-sed-host-binary
else
echo use-sed-host-binary
fi;
rm -f .sedtest