27 lines
883 B
Diff
27 lines
883 B
Diff
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
|
|
|
|
---
|
|
rust/src/scripts.rs | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/rust/src/scripts.rs b/rust/src/scripts.rs
|
|
index 078322a..766c82f 100644
|
|
--- a/rust/src/scripts.rs
|
|
+++ b/rust/src/scripts.rs
|
|
@@ -16,6 +16,9 @@ use phf::phf_set;
|
|
///
|
|
/// 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",
|
|
"glibc.prein",
|
|
// We take over depmod/dracut etc. It's `kernel` in C7 and kernel-core in F25+
|
|
// XXX: we should probably change this to instead ignore based on the kernel virtual Provides
|
|
--
|
|
2.33.0
|
|
|