1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

Fix rocky-8 vanilla compiler build (#2959)

Co-authored-by: Leonid Fedorov <leonid.fedorov@mariad.com>
This commit is contained in:
Leonid Fedorov
2023-09-20 04:04:08 +03:00
committed by GitHub
parent 70111eba3d
commit 8171e9da07
3 changed files with 11 additions and 4 deletions

View File

@ -68,6 +68,13 @@ if [[ $OS = 'Ubuntu' || $OS = 'Debian' ]]; then
fi
disable_git_restore_frozen_revision()
{
cd $MDB_SOURCE_PATH
git config submodule.storage/columnstore/columnstore.update none
cd - > /dev/null
}
select_branch()
{
cd $SCRIPT_LOCATION
@ -84,9 +91,6 @@ select_branch()
fi
message "Turning off Columnstore submodule auto update via gitconfig"
cd $MDB_SOURCE_PATH
git config submodule.storage/columnstore/columnstore.update none
cd - > /dev/null
fi
cd - > /dev/null
@ -529,6 +533,8 @@ generate_svgs()
fi
}
disable_git_restore_frozen_revision
select_branch
if [[ $INSTALL_DEPS = true ]] ; then