Skip to content
Snippets Groups Projects
Commit 503c2aa9 authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

SL-957: Pass an absolute pathname to CMake for VIEWER_SYMBOL_FILE.

parent 392bf44a
No related branches found
No related tags found
No related merge requests found
......@@ -116,8 +116,10 @@ pre_build()
symplat="linux"
;;
esac
# This name is consumed by indra/newview/CMakeLists.txt
VIEWER_SYMBOL_FILE="$build_dir/newview/$variant/secondlife-symbols-$symplat-${AUTOBUILD_ADDRSIZE}.tar.bz2"
# This name is consumed by indra/newview/CMakeLists.txt. Make it
# absolute because we've had troubles with relative pathnames.
abs_build_dir="$(cd "$build_dir"; pwd)"
VIEWER_SYMBOL_FILE="$abs_build_dir/newview/$variant/secondlife-symbols-$symplat-${AUTOBUILD_ADDRSIZE}.tar.bz2"
fi
# don't spew credentials into build log
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment