diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-09-17 17:17:43 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-09-17 17:17:43 +0200 |
commit | 6904ecce5fdd25a9564050101f1003a4d75e7bd5 (patch) | |
tree | 89ba992264de75e3393d02592e0f474a0e934848 /gnu/packages/gcc.scm | |
parent | c041886d920f2361702c412e0e19e55184fbf7b6 (diff) | |
download | patches-6904ecce5fdd25a9564050101f1003a4d75e7bd5.tar patches-6904ecce5fdd25a9564050101f1003a4d75e7bd5.tar.gz |
gnu: gcc-4.8.3: Add patch for PR61801.
* gnu/packages/patches/gcc-fix-pr61801.patch: New file.
* gnu/packages/gcc.scm (gcc-4.8): Use it.
* gnu-system.am (dist_patch_DATA): Add it.
Diffstat (limited to 'gnu/packages/gcc.scm')
-rw-r--r-- | gnu/packages/gcc.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm index 66888389d4..02601585b9 100644 --- a/gnu/packages/gcc.scm +++ b/gnu/packages/gcc.scm @@ -268,7 +268,8 @@ Go. It also includes runtime support libraries for these languages.") version "/gcc-" version ".tar.bz2")) (sha256 (base32 - "07hg10zs7gnqz58my10ch0zygizqh0z0bz6pv4pgxx45n48lz3ka")))))) + "07hg10zs7gnqz58my10ch0zygizqh0z0bz6pv4pgxx45n48lz3ka")) + (patches (list (search-patch "gcc-fix-pr61801.patch"))))))) (define-public gcc-4.9 (package (inherit gcc-4.7) |