build.cfg now specifies which revision of fteqw to build to avoid sudden

breakage
This commit is contained in:
Marco Cawthorne 2021-08-07 12:09:34 +02:00
parent ca9e42a49c
commit e50cf421e6
2 changed files with 5 additions and 2 deletions

View File

@ -24,3 +24,6 @@ BUILD_IQMTOOL=1
# Build the imgtool which analysis images and compresses them for GPUs
BUILD_IMGTOOL=1
# Specify which engine revision to build, these are considered 'stable'
BUILD_ENGINEREVISION=5997

View File

@ -61,12 +61,12 @@ mkdir -p ./bin
if [ -f "$FTE_MAKEFILE" ]; then
printf "Engine is present, updating...\n"
cd ./src/engine/
svn up
svn -r $BUILD_ENGINEREVISION up
cd ./engine
else
printf "Engine is NOT present, cloning...\n"
cd ./src/
svn checkout https://svn.code.sf.net/p/fteqw/code/trunk engine
svn -r $BUILD_ENGINEREVISION checkout https://svn.code.sf.net/p/fteqw/code/trunk engine
cd ./engine/engine
fi