diff options
author | Pacho Ramos <pacho@gentoo.org> | 2018-04-22 11:00:09 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2018-04-22 11:00:36 +0200 |
commit | b633db7078b607d05e6bc874f7738690317407b4 (patch) | |
tree | 604b02846799e4ae75e0e474400817d86f744390 /dev-python/enable | |
parent | app-emacs/eselect-mode: all stable wrt bug #653748 (diff) | |
download | gentoo-b633db7078b607d05e6bc874f7738690317407b4.tar.gz gentoo-b633db7078b607d05e6bc874f7738690317407b4.tar.bz2 gentoo-b633db7078b607d05e6bc874f7738690317407b4.zip |
dev-python/enable: Fix gcc5 patch (#599738 by Philippe Trottier)
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Diffstat (limited to 'dev-python/enable')
-rw-r--r-- | dev-python/enable/files/enable-4.5.1-gcc-5.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev-python/enable/files/enable-4.5.1-gcc-5.patch b/dev-python/enable/files/enable-4.5.1-gcc-5.patch index b18b8eae7bb7..700b0b3774f9 100644 --- a/dev-python/enable/files/enable-4.5.1-gcc-5.patch +++ b/dev-python/enable/files/enable-4.5.1-gcc-5.patch @@ -16,7 +16,7 @@ index 5b4d458..c6e290a 100644 line0 = f.readline() f.close() - m = re.match(r'.+?\s(3|4)\.\d+', line0) -+ m = re.match(r'.+?\s([3-5])\.\d+', line0) ++ m = re.match(r'.+?\s([3-8])\.\d+', line0) if int(m.group(1)) < 4: use_32bit_workaround = True |