added script to rename execs
This commit is contained in:
parent
9570b41828
commit
5464b6e8ba
Binary file not shown.
11
updateExecs.sh
Normal file
11
updateExecs.sh
Normal 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.
|
Loading…
Reference in New Issue
Block a user