summaryrefslogtreecommitdiffstats
path: root/package/sed/sedcheck.sh
blob: 4d645b6ab0f7ac7a40cc75dad3d8c3ae265f5f69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/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