diff options
author | h.udo <hudokkow@gmail.com> | 2016-09-09 22:29:01 +0100 |
---|---|---|
committer | h.udo <hudokkow@gmail.com> | 2016-12-21 10:04:18 +0000 |
commit | fade6926921ea1fa053444be45a2f79bac9ebd7f (patch) | |
tree | 15f557fc3f001873a8e539f7491ed424e22812a2 /tools/buildsteps/ios | |
parent | b0cad85adb045b88347cf8cded6770c7dd349406 (diff) |
[autotools/buildsteps/depends] Update paths
Diffstat (limited to 'tools/buildsteps/ios')
-rwxr-xr-x | tools/buildsteps/ios/make-binary-addons | 6 | ||||
-rwxr-xr-x | tools/buildsteps/ios/prepare-depends | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tools/buildsteps/ios/make-binary-addons b/tools/buildsteps/ios/make-binary-addons index c0651fc413..3f5bd0299b 100755 --- a/tools/buildsteps/ios/make-binary-addons +++ b/tools/buildsteps/ios/make-binary-addons @@ -5,7 +5,7 @@ XBMC_PLATFORM_DIR=ios . $WORKSPACE/tools/buildsteps/$XBMC_PLATFORM_DIR/make-native-depends #clear the build failed file -rm -f $WORKSPACE/project/cmake/$FAILED_BUILD_FILENAME +rm -f $WORKSPACE/cmake/$FAILED_BUILD_FILENAME ALL_BINARY_ADDONS_BUILT="1" #only build binary addons when requested by env/jenkins @@ -23,8 +23,8 @@ fi if [ "$ALL_BINARY_ADDONS_BUILT" == "1" ] then - tagSuccessFulBuild $WORKSPACE/project/cmake + tagSuccessFulBuild $WORKSPACE/cmake else #mark the build failure in the filesystem but leave jenkins running - tagFailedBuild $WORKSPACE/project/cmake + tagFailedBuild $WORKSPACE/cmake fi diff --git a/tools/buildsteps/ios/prepare-depends b/tools/buildsteps/ios/prepare-depends index 01aa9ed766..3b6a893605 100755 --- a/tools/buildsteps/ios/prepare-depends +++ b/tools/buildsteps/ios/prepare-depends @@ -4,7 +4,7 @@ XBMC_PLATFORM_DIR=ios #clean without depends for skipping depends build if possible #also skip binary addons (pvr, audioencoder) as long as they are deployed in tree -cd $WORKSPACE;git clean -xfd -e "project/cmake/.last_success_revision" -e "tools/depends" ${DEPLOYED_BINARY_ADDONS} +cd $WORKSPACE;git clean -xfd -e "cmake/.last_success_revision" -e "tools/depends" ${DEPLOYED_BINARY_ADDONS} # if depends path has changed - cleanout everything and do a full rebuild if [ "$(pathChanged $WORKSPACE/tools/depends)" == "1" ] |