aboutsummaryrefslogtreecommitdiffstats
path: root/community/firefox/fix-tools.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/firefox/fix-tools.patch')
-rw-r--r--community/firefox/fix-tools.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/community/firefox/fix-tools.patch b/community/firefox/fix-tools.patch
deleted file mode 100644
index 245d694bd38..00000000000
--- a/community/firefox/fix-tools.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff --git a/tools/profiler/core/platform-linux-android.cpp b/tools/profiler/core/platform-linux-android.cpp
-index 19d0a5c56d..b64b543066 100644
---- a/tools/profiler/core/platform-linux-android.cpp
-+++ b/tools/profiler/core/platform-linux-android.cpp
-@@ -506,8 +506,10 @@ static void PlatformInit(PSLockRef aLock) {}
- ucontext_t sSyncUContext;
-
- void Registers::SyncPopulate() {
-- if (!getcontext(&sSyncUContext)) {
-- PopulateRegsFromContext(*this, &sSyncUContext);
-- }
-+ #if defined(__GLIBC__)
-+ if (!getcontext(&sSyncUContext)) {
-+ PopulateRegsFromContext(*this, &sSyncUContext);
-+ }
-+ #endif
- }
- #endif