From c009034ba4d89584a516871f22d26f12fc31fed99875a05de768d6bccb577216 Mon Sep 17 00:00:00 2001 From: "Dr. Werner Fink" Date: Fri, 20 Jul 2018 09:36:03 +0000 Subject: [PATCH] boo#1101652 OBS-URL: https://build.opensuse.org/package/show/editors/emacs?expand=0&rev=260 --- emacs.changes | 6 ++++++ emacs.spec | 2 ++ 2 files changed, 8 insertions(+) diff --git a/emacs.changes b/emacs.changes index 4e98b26..5d784d3 100644 --- a/emacs.changes +++ b/emacs.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Fri Jul 20 09:33:08 UTC 2018 - werner@suse.de + +- Avoid error message on info.info(.info) as this file should not be + installed due it is part of the system package info (boo#1101652) + ------------------------------------------------------------------- Sun Jul 8 20:14:24 UTC 2018 - schwab@linux-m68k.org diff --git a/emacs.spec b/emacs.spec index efbfc5a..5019985 100644 --- a/emacs.spec +++ b/emacs.spec @@ -646,12 +646,14 @@ fi %post info for f in %info_files; do + test "$f" = "info.info" && continue test -e "$f" || f="${f}.info" %install_info --info-dir=%{_infodir} "%{_infodir}/$f.gz" 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.gz" done