Get rid of VERSION_EXTRA for buildbot

This is probably a leftover of when CMake didn't automatically
detect the revision from git.
This commit is contained in:
sfan5 2023-12-13 00:05:51 +01:00
parent 704b5d88b9
commit 62c6667b0b
2 changed files with 0 additions and 6 deletions

View File

@ -53,8 +53,6 @@ download "http://minetest.kitsunemimi.pw/openal-soft-$openal_version-win32.zip"
# Set source dir, downloading Minetest as needed
get_sources
git_hash=$(cd $sourcedir && git rev-parse --short HEAD)
# Build the thing
cd $builddir
[ -d build ] && rm -rf build
@ -62,7 +60,6 @@ cd $builddir
cmake_args=(
-DCMAKE_TOOLCHAIN_FILE=$toolchain_file
-DCMAKE_INSTALL_PREFIX=/tmp
-DVERSION_EXTRA=$git_hash
-DBUILD_CLIENT=1 -DBUILD_SERVER=0
-DEXTRA_DLL="$runtime_dlls"

View File

@ -50,8 +50,6 @@ download "http://minetest.kitsunemimi.pw/openal-soft-$openal_version-win64.zip"
# Set source dir, downloading Minetest as needed
get_sources
git_hash=$(cd $sourcedir && git rev-parse --short HEAD)
# Build the thing
cd $builddir
[ -d build ] && rm -rf build
@ -59,7 +57,6 @@ cd $builddir
cmake_args=(
-DCMAKE_TOOLCHAIN_FILE=$toolchain_file
-DCMAKE_INSTALL_PREFIX=/tmp
-DVERSION_EXTRA=$git_hash
-DBUILD_CLIENT=1 -DBUILD_SERVER=0
-DEXTRA_DLL="$runtime_dlls"