Fix missing quotation
...that appears to be broken ever since 9892af3cbf85e9793f21683aa16c84354d866ad5 "Modernize wasm debug symbol generation" and to have gone largely unnoticed, but now happened to cause > ./configure: line 14652: -gpubnames: command not found > checking whether ccache emcc supports ... configure: error: no in an odd Emscripten build of mine where I accidentally used a broken emcc (so that autogen.sh started to draw bogus conclusions and get into otherwise untested code branches) Change-Id: Idff3a52d61464f00f2c811b207c5a214672b5b42 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/173480 Reviewed-by: Stephan Bergmann <stephan.bergmann@allotropia.de> Tested-by: Jenkins
This commit is contained in:
parent
bfb66b4ee8
commit
45ffeed667
1 changed files with 1 additions and 1 deletions
|
@ -5035,7 +5035,7 @@ if test "$enable_split_debug" != no; then
|
|||
fi
|
||||
if test -n "$use_split_debug"; then
|
||||
if test "$_os" = "Emscripten"; then
|
||||
TEST_CC_FLAG=-gsplit-dwarf -gpubnames
|
||||
TEST_CC_FLAG='-gsplit-dwarf -gpubnames'
|
||||
else
|
||||
TEST_CC_FLAG=-gsplit-dwarf
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue