Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Cogitri/04bbd3f80ec1a828ac7b5cbf1e27d42d to your computer and use it in GitHub Desktop.

Select an option

Save Cogitri/04bbd3f80ec1a828ac7b5cbf1e27d42d to your computer and use it in GitHub Desktop.
0001-fixup-chromium-update-to-71.0.3578.80.patch
From b0b7b897f8b6e89279e9ca6b165b1d5029c3b536 Mon Sep 17 00:00:00 2001
From: Rasmus Thomsen <[email protected]>
Date: Sat, 8 Dec 2018 18:01:28 +0100
Subject: [PATCH] fixup! chromium: update to 71.0.3578.80.
---
srcpkgs/chromium/files/musl-patches/musl-hacks.patch | 11 +++++++++++
1 file changed, 11 insertions(+)
create mode 100644 srcpkgs/chromium/files/musl-patches/musl-hacks.patch
diff --git a/srcpkgs/chromium/files/musl-patches/musl-hacks.patch b/srcpkgs/chromium/files/musl-patches/musl-hacks.patch
new file mode 100644
index 0000000000..eff59ae5bc
--- /dev/null
+++ b/srcpkgs/chromium/files/musl-patches/musl-hacks.patch
@@ -0,0 +1,11 @@
+--- base/debug/stack_trace.cc.orig 2018-12-08 14:11:25.303475116 +0100
++++ base/debug/stack_trace.cc 2018-12-08 18:00:43.874946999 +0100
+@@ -229,7 +229,7 @@
+ }
+ std::string StackTrace::ToStringWithPrefix(const char* prefix_string) const {
+ std::stringstream stream;
+-#if !defined(__UCLIBC__) && !defined(_AIX)
++#if defined(__GLIBC__) && !defined(_AIX)
+ OutputToStreamWithPrefix(&stream, prefix_string);
+ #endif
+ return stream.str();
--
2.19.2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment