mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
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>
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user