Skip to content

Commit 5464b6e

Browse files
committed
added script to rename execs
1 parent 9570b41 commit 5464b6e

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

jni/vnc/.droidvncserver.c.swp

-24 KB
Binary file not shown.

updateExecs.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
3+
cd $(dirname $0)
4+
5+
for i in libs/*; do
6+
if [[ -d $i && -e $i/androidvncserver ]];then
7+
echo Moving $i/androidvncserver to $i/libandroidvncserver.so;
8+
mv $i/androidvncserver $i/libandroidvncserver.so;
9+
fi
10+
done
11+
echo Done.

0 commit comments

Comments
 (0)