ADB error does not work if soft links are present in recursive copy

I have many files in a directory. Few of these are soft links.

When I copy individually, the softlink copy works just fine without any problems.

$ adb push .libs/libgsti.la /sdcard/temp/.libs/ 121 KB/s (5196 bytes in 0.041s) 

But when I try to copy all the files to a directory containing a program link, it does not work when trying to copy a program link with an error:

Function not implemented

 $ adb push .libs/ /sdcard/tmp/.libs/ ...... (All success) failed to copy '.libs/libgsti.la' to '/sdcard/temp/.libs/libgsti.la': Function not implemented 

Is there any workaround?

+6
source share

All Articles