diff options
author | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2005-04-21 08:32:28 +0000 |
---|---|---|
committer | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2005-04-21 08:32:28 +0000 |
commit | 0508834bf5fa2d87ce1d8e5897d9607cc5b27a32 (patch) | |
tree | 6c705177728c3e5d49870cc11a5c941a5f8503f1 /openwrt/scripts/rstrip.sh | |
parent | b0b17d1f4fef7fd614efadc09dc76d7ac0b76741 (diff) | |
download | mtk-20170518-0508834bf5fa2d87ce1d8e5897d9607cc5b27a32.zip mtk-20170518-0508834bf5fa2d87ce1d8e5897d9607cc5b27a32.tar.gz mtk-20170518-0508834bf5fa2d87ce1d8e5897d9607cc5b27a32.tar.bz2 |
try to add with correct permissions later
SVN-Revision: 697
Diffstat (limited to 'openwrt/scripts/rstrip.sh')
-rwxr-xr-x | openwrt/scripts/rstrip.sh | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/openwrt/scripts/rstrip.sh b/openwrt/scripts/rstrip.sh deleted file mode 100755 index d9d3ad2..0000000 --- a/openwrt/scripts/rstrip.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh - -SELF=${0##*/} - -[ -z "$STRIP" ] && { - echo "$SELF: strip command not defined (STRIP variable not set)" - exit 1 -} - -TARGETS=$* - -[ -z "$TARGETS" ] && { - echo "$SELF: no directories / files specified" - echo "usage: $SELF [PATH...]" - exit 1 -} - -find $TARGETS -type f -a -exec file {} \; | \ - sed -n -e 's/^\(.*\):.*ELF.*\(executable\|relocatable\|shared object\).*, not stripped/\1:\2/p' | \ -( - IFS=":" - while read F S; do - echo "$SELF: $F:$S" - eval "$STRIP $F" - done -) |