blob: 9497ceab6b90f1ec71ce3f1fa95875ef1988a8ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
WORKSPACE=${WORKSPACE:-$( cd $(dirname $0)/../../.. ; pwd -P )}
XBMC_PLATFORM_DIR=ios
. $WORKSPACE/tools/buildsteps/defaultenv
#fetch submodules
cd $WORKSPACE
if test -d $WORKSPACE/addons/skin.re-touched
then
rm -r $WORKSPACE/addons/skin.re-touched
fi
git submodule update --init $WORKSPACE/addons/skin.re-touched
#build binary addons before building xbmc...
. $WORKSPACE/tools/buildsteps/$XBMC_PLATFORM_DIR/make-binary-addons
|