rpm-ostree/0001-fix-compose-err.patch

27 lines
883 B
Diff
Raw Normal View History

2024-04-23 12:43:58 +08:00
From 4f76ecdf729cad9c6ba0cac2bbaff8c140f01220 Mon Sep 17 00:00:00 2001
From: rpm-build <rpm-build>
Date: Wed, 17 Jan 2024 01:30:02 +0800
Subject: [PATCH 1/4] fix compose err
2024-02-20 17:57:03 +08:00
---
rust/src/scripts.rs | 3 +++
1 file changed, 3 insertions(+)
diff --git a/rust/src/scripts.rs b/rust/src/scripts.rs
2024-04-23 12:43:58 +08:00
index 078322a..766c82f 100644
2024-02-20 17:57:03 +08:00
--- a/rust/src/scripts.rs
+++ b/rust/src/scripts.rs
2024-04-23 12:43:58 +08:00
@@ -16,6 +16,9 @@ use phf::phf_set;
///
2022-10-10 11:25:36 +08:00
/// NOTE FOR GIT history: This list used to live in src/libpriv/rpmostree-script-gperf.gperf
static IGNORED_PKG_SCRIPTS: phf::Set<&'static str> = phf_set! {
+ "glibc-common.posttrans",
+ "grub2-efi-x64.prein",
+ "grub2-efi-aa64.prein",
2024-04-23 12:43:58 +08:00
"glibc.prein",
2022-10-10 11:25:36 +08:00
// We take over depmod/dracut etc. It's `kernel` in C7 and kernel-core in F25+
2023-02-23 15:22:15 +08:00
// XXX: we should probably change this to instead ignore based on the kernel virtual Provides
2024-02-20 17:57:03 +08:00
--
2024-04-23 12:43:58 +08:00
2.33.0
2024-02-20 17:57:03 +08:00