From 44af1866aa41cfbbad48583106cb82201ded4fcb Mon Sep 17 00:00:00 2001 From: nbd Date: Wed, 27 Sep 2006 14:06:46 +0000 Subject: move tools from toolchain/ to tools/ git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4866 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- toolchain/sed/sedcheck.sh | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100755 toolchain/sed/sedcheck.sh (limited to 'toolchain/sed/sedcheck.sh') diff --git a/toolchain/sed/sedcheck.sh b/toolchain/sed/sedcheck.sh deleted file mode 100755 index de15ac2f1..000000000 --- a/toolchain/sed/sedcheck.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/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 - - -- cgit v1.2.3