summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-rwxr-xr-xclient/icecc-create-env7
1 files changed, 4 insertions, 3 deletions
diff --git a/client/icecc-create-env b/client/icecc-create-env
index 6815b1b..718e55c 100755
--- a/client/icecc-create-env
+++ b/client/icecc-create-env
@@ -163,9 +163,10 @@ for i in $target_files; do
esac
mkdir -p $tempdir/`dirname $target`
cp -p $path $tempdir/$target
- if test -f $tempdir/$target -a -x $tempdir/$target; then
- strip -s $tempdir/$target 2>/dev/null
- fi
+ # Bug in binutils, see https://bugs.tizen.org/jira/browse/TINF-1404
+ # if test -f $tempdir/$target -a -x $tempdir/$target; then
+ # strip -s $tempdir/$target 2>/dev/null
+ # fi
target=`echo $target | cut -b2-`
new_target_files="$new_target_files $target"
done