aboutsummaryrefslogtreecommitdiff
path: root/tools/buildsteps/linux64
diff options
context:
space:
mode:
Diffstat (limited to 'tools/buildsteps/linux64')
-rwxr-xr-xtools/buildsteps/linux64/make-binary-addons6
-rwxr-xr-xtools/buildsteps/linux64/prepare-depends2
2 files changed, 4 insertions, 4 deletions
diff --git a/tools/buildsteps/linux64/make-binary-addons b/tools/buildsteps/linux64/make-binary-addons
index beda7297f0..5c58675ee7 100755
--- a/tools/buildsteps/linux64/make-binary-addons
+++ b/tools/buildsteps/linux64/make-binary-addons
@@ -5,7 +5,7 @@ XBMC_PLATFORM_DIR=linux64
. $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
@@ -21,8 +21,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/linux64/prepare-depends b/tools/buildsteps/linux64/prepare-depends
index ae0a027a06..6064a17f79 100755
--- a/tools/buildsteps/linux64/prepare-depends
+++ b/tools/buildsteps/linux64/prepare-depends
@@ -4,7 +4,7 @@ XBMC_PLATFORM_DIR=linux64
#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" ]