let ipkg fail when a package file to be installed is not found
[openwrt/staging/wigyori.git] / openwrt / toolchain / sed / sedcheck.sh
1 #!/bin/sh
2
3 if [ -x /usr/bin/sed ]; then
4 SED="/usr/bin/sed";
5 else
6 if [ -x /bin/sed ]; then
7 SED="/bin/sed";
8 fi;
9 fi;
10
11 echo "HELLO" > .sedtest
12 $SED -i -e "s/HELLO/GOODBYE/" .sedtest >/dev/null 2>&1
13
14 if [ $? != 0 ] ; then
15 echo build-sed-host-binary
16 else
17 echo use-sed-host-binary
18 fi;
19 rm -f .sedtest
20
21