diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2024-05-20 17:44:11 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2024-05-20 17:46:07 +0530 |
commit | f4d5f057994eb366723cf303001a9ae8d11d4f8e (patch) | |
tree | aabe9aa0c39c07da482249449a33b83b6fa2562a /ci | |
parent | 5ca7c65564a035072b3bf8ac47cf80c0ad7ff7df (diff) |
ci: Truncate cerbero builddir to "cb" to address long path issues
There really is no fix, apparently, other than keeping the path short.
Too many things break if your paths become longer than 260 characters.
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1464>
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/cerbero_setup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/cerbero_setup.sh b/ci/cerbero_setup.sh index 7c558ef8..509e1bd6 100755 --- a/ci/cerbero_setup.sh +++ b/ci/cerbero_setup.sh @@ -67,7 +67,7 @@ cerbero_before_script() { echo "home_dir = \"$(pwd_native)/${CERBERO_HOME}\"" > localconf.cbc echo "local_sources = \"$(pwd_native)/${CERBERO_SOURCES}\"" >> localconf.cbc - echo "mingw_perl_prefix = \"${CERBERO_HOST_DIR}/cerbero-build/mingw/perl\"" >> localconf.cbc + echo "mingw_perl_prefix = \"${CERBERO_HOST_DIR}/${CERBERO_HOME}/mingw/perl\"" >> localconf.cbc if [[ $CONFIG == win??.cbc ]] || [[ $CONFIG =~ uwp ]] ; then # Visual Studio 2022 build tools install path echo 'vs_install_path = "C:/BuildTools"' >> localconf.cbc |