configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 45ffeed6674e4f3c5b92f951094d41a0d0ec8002
Author: Stephan Bergmann <[email protected]>
AuthorDate: Mon Sep 16 21:29:40 2024 +0200
Commit: Stephan Bergmann <[email protected]>
CommitDate: Tue Sep 17 21:01:18 2024 +0200
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 <[email protected]>
Tested-by: Jenkins
diff --git a/configure.ac b/configure.ac
index 5e4dc02eddb1..5597a9d6f198 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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