summaryrefslogtreecommitdiffstats
path: root/tools/sed/sedcheck.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/sed/sedcheck.sh')
-rwxr-xr-xtools/sed/sedcheck.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/tools/sed/sedcheck.sh b/tools/sed/sedcheck.sh
new file mode 100755
index 000000000..de15ac2f1
--- /dev/null
+++ b/tools/sed/sedcheck.sh
@@ -0,0 +1,25 @@
+#!/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
+ *)
+ if [ $? != 0 ] ; then
+ echo build-sed-host-binary
+ else
+ echo use-sed-host-binary
+ fi;
+ ;;
+esac
+rm -f .sedtest
+
+