mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-06 10:23:44 +02:00
14ace0ca94
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4029 3c298f89-4303-0410-b956-a3cf2f4a3e73
31 lines
421 B
Bash
Executable File
31 lines
421 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
|
|
|
|
case "$1" in
|
|
download)
|
|
if [ $? != 0 ] ; then
|
|
echo download-sed-binary
|
|
fi;
|
|
;;
|
|
*)
|
|
if [ $? != 0 ] ; then
|
|
echo build-sed-host-binary
|
|
else
|
|
echo use-sed-host-binary
|
|
fi;
|
|
;;
|
|
esac
|
|
rm -f .sedtest
|
|
|
|
|