diff options
Diffstat (limited to 'community/chromium/musl-hacks.patch')
-rw-r--r-- | community/chromium/musl-hacks.patch | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/community/chromium/musl-hacks.patch b/community/chromium/musl-hacks.patch index 91706ef2ef..790d173993 100644 --- a/community/chromium/musl-hacks.patch +++ b/community/chromium/musl-hacks.patch @@ -1,11 +1,11 @@ --- ./base/debug/stack_trace.cc.orig +++ ./base/debug/stack_trace.cc -@@ -33,7 +33,7 @@ +@@ -214,7 +214,7 @@ std::string StackTrace::ToString() const { std::stringstream stream; --#if !defined(__UCLIBC__) -+#if defined(__GLIBC__) +-#if !defined(__UCLIBC__) && !defined(_AIX) ++#if defined(__GLIBC__) && !defined(_AIX) OutputToStream(&stream); #endif return stream.str(); |