hints/linux-androideabi.sh: adb takes care of creating the target dir on the target
authorBrian Fraser <fraserbn@gmail.com>
Sun, 11 Aug 2013 21:30:18 +0000 (18:30 -0300)
committerBrian Fraser <fraserbn@gmail.com>
Sun, 26 Jan 2014 17:44:20 +0000 (14:44 -0300)
hints/linux-android.sh

index b87e87e..66df178 100644 (file)
@@ -213,11 +213,9 @@ for f in \$@
 do
   case "\$f" in
   /*)
-    $targetmkdir \`dirname \$f\`
     adb -s $targethost push \$f \$f            || exit 1
     ;;
   *)
-    $targetmkdir $targetdir/\`dirname \$f\`
     (adb -s $targethost push \$f $targetdir/\$f < /dev/null 2>&1) || exit 1
     ;;
   esac