added script to rename execs

This commit is contained in:
JosePereira 2012-06-12 17:53:47 +01:00
parent 9570b41828
commit 5464b6e8ba
2 changed files with 11 additions and 0 deletions

Binary file not shown.

11
updateExecs.sh Normal file
View File

@ -0,0 +1,11 @@
#!/bin/bash
cd $(dirname $0)
for i in libs/*; do
if [[ -d $i && -e $i/androidvncserver ]];then
echo Moving $i/androidvncserver to $i/libandroidvncserver.so;
mv $i/androidvncserver $i/libandroidvncserver.so;
fi
done
echo Done.