prepare_sources raise an error if the path to the ndk not passed as parameter
This commit is contained in:
parent
e9b307a18a
commit
bd4838a155
1 changed files with 6 additions and 0 deletions
|
@ -2,6 +2,12 @@
|
||||||
|
|
||||||
topdir=`pwd`
|
topdir=`pwd`
|
||||||
|
|
||||||
|
if [ $# -ne 1 ]
|
||||||
|
then
|
||||||
|
"Error : path to the ndk as parameter."
|
||||||
|
exit 65
|
||||||
|
fi
|
||||||
|
|
||||||
cd submodules/externals/ffmpeg
|
cd submodules/externals/ffmpeg
|
||||||
if test -z "`git status | grep neon`" ; then
|
if test -z "`git status | grep neon`" ; then
|
||||||
echo "Applying patch to ffmpeg"
|
echo "Applying patch to ffmpeg"
|
||||||
|
|
Loading…
Reference in a new issue