android - Bash syntax error near unexpected token '('. Windows 7 -


trying execute ndk path android build hookflash demo in bash shell windows 7:

https://github.com/openpeer/opandroid

ndk path located in windows 32 bit folder requirement:

c:\program files (x86)\java\android-ndk-r8e 

when executing:

./buildall_android.sh c:\program files (x86)\java\android-ndk-r8e 

i receive following error:

sh.exe": syntax error near unexpected token '(' 

i aware since ndk in 32 bit folder parentheses around "(x86)" issue throwing token error. how else can write command fix error? help.

since have spaces , parentheses in path, need put path in quotes:

./buildall_android.sh "c:\program files (x86)\java\android-ndk-r8e" 

Comments

Popular posts from this blog

cakephp - simple blog with croogo -

How to group boxplot outliers in gnuplot -

bash - Performing variable substitution in a string -