public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/bind] rawhide: Fix filter-{a,aaaa}.so unexpanded with ghost flag
@ 2026-07-15 10:01
0 siblings, 0 replies; only message in thread
From: @ 2026-07-15 10:01 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/bind
Branch : rawhide
Commit : 78e7e9e5ff4c8f5d4a112f99945ce5c1973566d5
Author : Petr Menšík <pemensik@redhat.com>
Date : 2026-07-08T20:10:59+02:00
Stats : +4/-2 in 1 file(s)
URL : https://src.fedoraproject.org/rpms/bind/c/78e7e9e5ff4c8f5d4a112f99945ce5c1973566d5?branch=rawhide
Log:
Fix filter-{a,aaaa}.so unexpanded with ghost flag
The same trick that worked fine for normal files does not work on ghost
file. %ghost flag seems to require only single file after it. Shell is
not expanded, but used in the name.
---
diff --git a/bind.spec b/bind.spec
index c42fda4..ef4be45 100644
--- a/bind.spec
+++ b/bind.spec
@@ -1048,7 +1048,8 @@ fi;
%{_sbindir}/rndc-confgen%{program_suffix}
%ghost %{_unitdir}/named.service
%ghost %{_unitdir}/named-setup-rndc.service
-%ghost %{_libdir}/bind/filter-{a,aaaa}.so
+%ghost %attr(0755,-,-) %{_libdir}/bind/filter-a.so
+%ghost %attr(0755,-,-) %{_libdir}/bind/filter-aaaa.so
%ghost %{_bindir}/named-checkconf
%ghost %{_bindir}/named-journalprint
%ghost %{_bindir}/named-rrchecker
@@ -1083,7 +1084,8 @@ fi;
%ghost %{_mandir}/man8/rndc.8*
%ghost %{_mandir}/man8/named.8*
%ghost %{_mandir}/man8/rndc-confgen.8*
-%ghost %{_mandir}/man8/filter-{a,aaaa}.8*
+%ghost %attr(0644,-,-) %{_mandir}/man8/filter-a.8*
+%ghost %attr(0644,-,-) %{_mandir}/man8/filter-aaaa.8*
%doc README.md named.conf.default
%doc sample/
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-07-15 10:01 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-15 10:01 [rpms/bind] rawhide: Fix filter-{a,aaaa}.so unexpanded with ghost flag
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox