diff options
author | axis <qt-info@nokia.com> | 2010-02-19 15:43:20 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2010-02-19 15:43:58 (GMT) |
commit | 95407ac02fbe7a75797653c3ff8a22c9d1cbd3d1 (patch) | |
tree | 6374c2341249704bc2d4971a1ff61e07dcab24f8 /bin | |
parent | 1e5726a08c12a28606d0da1d8e9120a3487c5da5 (diff) | |
download | Qt-95407ac02fbe7a75797653c3ff8a22c9d1cbd3d1.zip Qt-95407ac02fbe7a75797653c3ff8a22c9d1cbd3d1.tar.gz Qt-95407ac02fbe7a75797653c3ff8a22c9d1cbd3d1.tar.bz2 |
Removed winewrapper.
It is no longer needed after we switched to gnupoc as the S60 SDK for
Linux.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/winewrapper | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/bin/winewrapper b/bin/winewrapper deleted file mode 100755 index 94cc38a..0000000 --- a/bin/winewrapper +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh - -if [ "$1" = "" ]; then - echo "Must supply parameters" - exit 3 -fi - -oldIFS="$IFS" -IFS=: -for i in $PATH; do - if [ -e $i/$1 ]; then - executable="$i/$1" - break - fi -done - -if [ "$executable" = "" ]; then - echo "$1 not found in path" 1>&2 - exit 3 -fi - -IFS="$oldIFS" -shift -wine "$executable" "$@" |