diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2019-11-29 12:45:12 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2019-11-29 12:45:12 +0000 |
commit | c74866bbb809be5b6e45f651cba80be029a6be0f (patch) | |
tree | c5253f0733b6aa5ddda13d721c1944b5e97d3377 /mail/thunderbird/files | |
parent | 6f8b4678742af0be6209a6b9816e21fcf627fa32 (diff) |
Notes
Diffstat (limited to 'mail/thunderbird/files')
-rw-r--r-- | mail/thunderbird/files/patch-bug1507655 | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/mail/thunderbird/files/patch-bug1507655 b/mail/thunderbird/files/patch-bug1507655 deleted file mode 100644 index e923ec0c08e1..000000000000 --- a/mail/thunderbird/files/patch-bug1507655 +++ /dev/null @@ -1,29 +0,0 @@ -Revert bug 1497976 as close_fds on Python 2 is too slow - -diff --git build/moz.configure/util.configure build/moz.configure/util.configure -index 25862fee7c32..3fc725a5124e 100644 ---- build/moz.configure/util.configure -+++ build/moz.configure/util.configure -@@ -22,7 +22,6 @@ - - # A wrapper to obtain a process' output and return code. - # Returns a tuple (retcode, stdout, stderr). --@imports('os') - @imports(_from='__builtin__', _import='unicode') - @imports('subprocess') - @imports(_from='mozbuild.shellutil', _import='quote') -@@ -45,13 +44,7 @@ - - log.debug('Executing: `%s`', quote(*args)) - proc = subprocess.Popen(args, stdout=subprocess.PIPE, -- stderr=subprocess.PIPE, -- # On Python 2 on Windows, close_fds prevents the -- # process from inheriting stdout/stderr. -- # Elsewhere, it simply prevents it from inheriting -- # extra file descriptors, which is what we want. -- close_fds=os.name != 'nt', -- **kwargs) -+ stderr=subprocess.PIPE, **kwargs) - stdout, stderr = proc.communicate() - return proc.wait(), stdout, stderr - |