diff options
author | Mark H Weaver <mhw@netris.org> | 2015-07-15 22:55:26 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2015-07-15 23:02:27 -0400 |
commit | 385ae063c9826baf00ae47d7689f23af52bce753 (patch) | |
tree | a8f142d508c8f7188387a5b6fbcf9afa664468f4 /gnu-system.am | |
parent | 368474150b0a77ff54509f6ad0533d8c5a208bac (diff) | |
download | guix-385ae063c9826baf00ae47d7689f23af52bce753.tar guix-385ae063c9826baf00ae47d7689f23af52bce753.tar.gz |
gnu: unzip: Fix CVE-2014-9636 and some other bugs.
* gnu/packages/patches/unzip-CVE-2014-9636.patch,
gnu/packages/patches/unzip-allow-greater-hostver-values.patch,
gnu/packages/patches/unzip-increase-size-of-cfactorstr.patch,
gnu/packages/patches/unzip-initialize-symlink-flag.patch,
gnu/packages/patches/unzip-remove-build-date.patch: New files.
* gnu-system.am (dist_patch_DATA): Add them.
* gnu/packages/zip.scm (unzip)[source]: Add patches.
[arguments]: Use 'modify-phases'. Remove custom 'configure' phase; pass
additional make-flags instead. Add custom 'build' phase that builds
"generic_gcc" target; remove "generic_gcc" from make-flags.
Diffstat (limited to 'gnu-system.am')
-rw-r--r-- | gnu-system.am | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu-system.am b/gnu-system.am index c9c1d6e5a8..d99a4e2cd4 100644 --- a/gnu-system.am +++ b/gnu-system.am @@ -621,6 +621,11 @@ dist_patch_DATA = \ gnu/packages/patches/unzip-CVE-2014-8139.patch \ gnu/packages/patches/unzip-CVE-2014-8140.patch \ gnu/packages/patches/unzip-CVE-2014-8141.patch \ + gnu/packages/patches/unzip-CVE-2014-9636.patch \ + gnu/packages/patches/unzip-allow-greater-hostver-values.patch \ + gnu/packages/patches/unzip-increase-size-of-cfactorstr.patch \ + gnu/packages/patches/unzip-initialize-symlink-flag.patch \ + gnu/packages/patches/unzip-remove-build-date.patch \ gnu/packages/patches/util-linux-tests.patch \ gnu/packages/patches/upower-builddir.patch \ gnu/packages/patches/valgrind-glibc-2.21.patch \ |