public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
To: git-commits@fedoraproject.org
Subject: [rpms/bind] rawhide: Fix filter-{a,aaaa}.so unexpanded with ghost flag
Date: Wed, 15 Jul 2026 10:01:33 GMT [thread overview]
Message-ID: <178410969333.1.16414062571450902383.rpms-bind-78e7e9e5ff4c@fedoraproject.org> (raw)
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/
reply other threads:[~2026-07-15 10:01 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178410969333.1.16414062571450902383.rpms-bind-78e7e9e5ff4c@fedoraproject.org \
--to=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox