diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-03-26 21:15:08 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-03-26 21:15:08 +0100 |
commit | 3089b70d766bd9ec70e1464867130b7b864fbe17 (patch) | |
tree | 3aeb60be944d68911f6669fdfb8c3895523afb90 /gnu | |
parent | 9ea9ff6b0fc5670ef4dc29d628043f694a747cab (diff) | |
download | guix-3089b70d766bd9ec70e1464867130b7b864fbe17.tar guix-3089b70d766bd9ec70e1464867130b7b864fbe17.tar.gz |
gnu: icu4c: Explicitly add patch flags in replacement package.
This is to prevent a build failure when this gets merged to 'core-updates'
which does not have any patch-flags to inherit.
* gnu/packages/icu4c.scm (icu4c/fixed)[source](patch-flags): New field.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/icu4c.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/icu4c.scm b/gnu/packages/icu4c.scm index bc74da5942..3869016df3 100644 --- a/gnu/packages/icu4c.scm +++ b/gnu/packages/icu4c.scm @@ -111,6 +111,7 @@ C/C++ part.") (inherit icu4c) (source (origin (inherit (package-source icu4c)) + (patch-flags '("-p2")) (patches (append (origin-patches (package-source icu4c)) (search-patches |