summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Deutschmann <whissi@gentoo.org>2020-04-26 14:59:40 +0200
committerThomas Deutschmann <whissi@gentoo.org>2020-04-26 14:59:59 +0200
commit7219eef8e93337359c2e13ed1727ee67846cb04b (patch)
treee514ad37b547a57a723a6dac2ebf235309d10d13 /app-arch
parentapp-arch/rpm2targz: fix Prefix regression by e7660d41. (diff)
downloadgentoo-7219eef8e93337359c2e13ed1727ee67846cb04b.tar.gz
gentoo-7219eef8e93337359c2e13ed1727ee67846cb04b.tar.bz2
gentoo-7219eef8e93337359c2e13ed1727ee67846cb04b.zip
app-arch/rpm2targz: fix prefix installation
Closes: https://bugs.gentoo.org/719208 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'app-arch')
-rw-r--r--app-arch/rpm2targz/files/rpm2targz-9.0.0.5g-add-zstd-support.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/app-arch/rpm2targz/files/rpm2targz-9.0.0.5g-add-zstd-support.patch b/app-arch/rpm2targz/files/rpm2targz-9.0.0.5g-add-zstd-support.patch
index 085c61aa4e71..cc0c46aee033 100644
--- a/app-arch/rpm2targz/files/rpm2targz-9.0.0.5g-add-zstd-support.patch
+++ b/app-arch/rpm2targz/files/rpm2targz-9.0.0.5g-add-zstd-support.patch
@@ -7,7 +7,7 @@ Author: Rafał Mużyło
static const unsigned char magic_gzip[] = { '\037', '\213', '\010' };
static const unsigned char magic_bzip2[] = { 'B', 'Z', 'h' };
static const unsigned char magic_xz[] = { 0xFD, '7', 'z', 'X', 'Z', 0x00 };
-+static const unsigned char magic_zstd[] = { 0x28, 0xB5, 0x2F, 0xFD };
++static const unsigned char magic_zstd[] = { 0x28, 0xB5, 0x2F, 0xFD };
static const magic_t magics[] = {
#define DECLARE_MAGIC_T(t) { .type = #t, .magic = magic_##t, .len = sizeof(magic_##t), },
DECLARE_MAGIC_T(gzip)