gbranden pushed a commit to branch master
in repository groff.

commit 960925f8e26dbce1b0e909eebc7dada867c1a94b
Author: G. Branden Robinson <[email protected]>
AuthorDate: Fri Jul 3 21:27:18 2026 -0500

    doc/doc.am: Fix Savannah #68498.
    
    * doc/doc.am (install-info-local): Clean out any existing Info files in
      `$(DESTDIR)/$(infodir)`, not `$(DESTDIR)/doc`.
    
    Fixes <https://savannah.gnu.org/bugs/?68498>.  Problem introduced by me
    in commit d79c3f3a4a, 2021-11-11.
---
 ChangeLog  | 8 ++++++++
 doc/doc.am | 2 +-
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index 17c4f44ad..60bb229b9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2026-07-03  G. Branden Robinson <[email protected]>
+
+       * doc/doc.am (install-info-local): Clean out any existing Info
+       files in `$(DESTDIR)/$(infodir)`, not `$(DESTDIR)/doc`.
+
+       Fixes <https://savannah.gnu.org/bugs/?68498>.  Problem
+       introduced by me in commit d79c3f3a4a, 2021-11-11.
+
 2026-07-02  G. Branden Robinson <[email protected]>
 
        [doc,man]: Add line layout diagram.
diff --git a/doc/doc.am b/doc/doc.am
index 49321e3ed..d2463fd0f 100644
--- a/doc/doc.am
+++ b/doc/doc.am
@@ -774,7 +774,7 @@ install-data-local: install-info-local
 install-info-local: $(GROFF_INFO)
        -test -d $(DESTDIR)$(infodir) \
          || $(mkinstalldirs) $(DESTDIR)$(infodir)
-       $(RM) $(DESTDIR)/doc/groff.info*
+       $(RM) $(DESTDIR)$(infodir)/groff.info*
        for d in $(doc_builddir) $(doc_srcdir); do \
          if [ -f "$$d"/groff.info ]; then \
            cp "$$d"/groff.info* $(DESTDIR)$(infodir); \

_______________________________________________
groff-commit mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/groff-commit

Reply via email to