added script to update libs and execs
This commit is contained in:
parent
c9bbcba4c5
commit
834de58dee
12
updateExecsAndLibs.sh
Executable file
12
updateExecsAndLibs.sh
Executable file
@ -0,0 +1,12 @@
|
|||||||
|
#!/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
|
||||||
|
cp -frv nativeMethods/libs/* libs
|
||||||
|
echo Done.
|
Loading…
Reference in New Issue
Block a user