From 533b5a63bf68c34651a27cd2b2b802eae823a4ad3567b4bd656b1ed7f612d10c Mon Sep 17 00:00:00 2001 From: Martin Pluskal Date: Fri, 5 Jan 2024 09:03:48 +0000 Subject: [PATCH] Accepting request 1135787 from home:gcomes.obs - fix typo in %{ext_info} macro usage OBS-URL: https://build.opensuse.org/request/show/1135787 OBS-URL: https://build.opensuse.org/package/show/editors/emacs?expand=0&rev=376 --- emacs.changes | 5 +++++ emacs.spec | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/emacs.changes b/emacs.changes index 426fccf..74fb521 100644 --- a/emacs.changes +++ b/emacs.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Dec 29 22:42:28 UTC 2023 - Giacomo Comes + +- fix typo in %{ext_info} macro usage + ------------------------------------------------------------------- Wed Nov 15 10:34:24 UTC 2023 - Dirk Müller diff --git a/emacs.spec b/emacs.spec index d2f4a8a..18f3703 100644 --- a/emacs.spec +++ b/emacs.spec @@ -831,14 +831,14 @@ fi for f in %info_files; do test "$f" = "info.info" && continue test -e "$f" || f="${f}.info" - %install_info --info-dir=%{_infodir} "%{_infodir}/$f.%{%ext_info}" + %install_info --info-dir=%{_infodir} "%{_infodir}/$f%{ext_info}" done %preun info for f in %info_files; do test "$f" = "info.info" && continue test -e "$f" || f="${f}.info" - %install_info_delete --info-dir=%{_infodir} "%{_infodir}/$f.%{%ext_info}" + %install_info_delete --info-dir=%{_infodir} "%{_infodir}/$f%{ext_info}" done %endif