aboutsummaryrefslogtreecommitdiffstats
path: root/testing/thunderbird/0003-Disable-ccache-stats.patch
diff options
context:
space:
mode:
authorJ0WI <J0WI@users.noreply.github.com>2019-10-26 17:04:12 +0200
committerRasmus Thomsen <oss@cogitri.dev>2019-10-26 23:11:17 +0200
commit7e130731a332e3d5d593b52869e2f4e02da33f59 (patch)
tree5078b4359f3939c406c071405faea8bedc516154 /testing/thunderbird/0003-Disable-ccache-stats.patch
parent00be3a44472d6239a5052218d41d055fba9b3634 (diff)
downloadaports-7e130731a332e3d5d593b52869e2f4e02da33f59.tar.bz2
aports-7e130731a332e3d5d593b52869e2f4e02da33f59.tar.xz
testing/thunderbird: upgrade to 68.2.0
Diffstat (limited to 'testing/thunderbird/0003-Disable-ccache-stats.patch')
-rw-r--r--testing/thunderbird/0003-Disable-ccache-stats.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/testing/thunderbird/0003-Disable-ccache-stats.patch b/testing/thunderbird/0003-Disable-ccache-stats.patch
deleted file mode 100644
index 82ca2aa1cb..0000000000
--- a/testing/thunderbird/0003-Disable-ccache-stats.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/python/mozbuild/mozbuild/controller/building.py 2019-07-03 15:25:28.000000000 +0000
-+++ b/python/mozbuild/mozbuild/controller/building.py 2019-07-17 02:49:12.693079588 +0000
-@@ -940,7 +940,7 @@ class BuildDriver(MozbuildObject):
- warnings_path = self._get_state_filename('warnings.json')
- monitor = self._spawn(BuildMonitor)
- monitor.init(warnings_path)
-- ccache_start = monitor.ccache_stats()
-+ ccache_start = None # monitor.ccache_stats()
- footer = BuildProgressFooter(self.log_manager.terminal, monitor)
-
- # Disable indexing in objdir because it is not necessary and can slow
-@@ -1158,7 +1158,7 @@ class BuildDriver(MozbuildObject):
- if high_finder:
- print(FINDER_SLOW_MESSAGE % finder_percent)
-
-- ccache_end = monitor.ccache_stats()
-+ ccache_end = None # monitor.ccache_stats()
-
- ccache_diff = None
- if ccache_start and ccache_end: