diff options
author | Yehonal <yehonal.azeroth@gmail.com> | 2025-09-27 13:36:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-27 13:36:14 +0200 |
commit | b950c610d4e41ee6bbfc9476020546548c20100d (patch) | |
tree | 172f74f8e19655119fd4c5b0d3979380423fb79c /conf/dist/config.sh | |
parent | 815d99250aba4fbedf39eecd1c5c32ce1493a0e2 (diff) |
feat(bash): test command in dashboard + fix tests (#23030)
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Diffstat (limited to 'conf/dist/config.sh')
-rw-r--r-- | conf/dist/config.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/conf/dist/config.sh b/conf/dist/config.sh index 1f956ca70e..e33d19f212 100644 --- a/conf/dist/config.sh +++ b/conf/dist/config.sh @@ -108,6 +108,15 @@ CCUSTOMOPTIONS=${CCUSTOMOPTIONS:-''} AC_CCACHE=${AC_CCACHE:-false} export CCACHE_DIR=${CCACHE_DIR:-"$AC_PATH_VAR/ccache"} +# +# Enable running the cmake install as root +# Installing as root allows to set the SUID bit on +# the worldserver binary. This is required if you want +# to bind the worldserver to reserved ports +# Default: 0 (false) +# +export AC_ENABLE_ROOT_CMAKE_INSTALL=${AC_ENABLE_ROOT_CMAKE_INSTALL:-0} + ############################################## # # GOOGLE PERF TOOLS |