https://gcc.gnu.org/g:14d0c863aa9415f5d78047910233d67d91f4ecf5

commit r14-9734-g14d0c863aa9415f5d78047910233d67d91f4ecf5
Author: Christophe Lyon <christophe.l...@linaro.org>
Date:   Fri Mar 29 17:59:38 2024 +0000

    modula2: Fix m2.install-info in gcc/m2/Make-lang.in
    
    Fix a few typos: the generated filename is m2.info (not gm2.info, and
    gm2$(exeext) is a file not a directory (so test -d would always fail).
    
    2024-03-29  Christophe Lyon  <christophe.l...@linaro.org>
    
            gcc/m2/
            * Make-lang.in (m2.install-info): Fix rule.

Diff:
---
 gcc/m2/Make-lang.in | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/gcc/m2/Make-lang.in b/gcc/m2/Make-lang.in
index 2d8a47a1b1f..e56240b4c44 100644
--- a/gcc/m2/Make-lang.in
+++ b/gcc/m2/Make-lang.in
@@ -400,20 +400,20 @@ m2.install-common: installdirs
          done
 
 m2.install-info: installdirs
-       if [ -d gm2$(exeext) ] ; then \
-         if [ -f $(objdir)/doc/gm2.info ]; then \
-           rm -f $(DESTDIR)$(infodir)/gm2.info*; \
-           for f in $(objdir)/doc/gm2.info*; do \
+       if [ -f gm2$(exeext) ] ; then \
+         if [ -f $(objdir)/doc/m2.info ]; then \
+           rm -f $(DESTDIR)$(infodir)/m2.info*; \
+           for f in $(objdir)/doc/m2.info*; do \
              realfile=`echo $$f | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
               rm -f $(DESTDIR)$(infodir)/`basename $$realfile`; \
              $(INSTALL_DATA) $$f $(DESTDIR)$(infodir)/`basename $$realfile`; \
            done; \
-           chmod a-x $(DESTDIR)$(infodir)/gm2.info*; \
+           chmod a-x $(DESTDIR)$(infodir)/m2.info*; \
          else true; fi; \
        else true; fi
-       -if [ -f gm2$(exeext) ] && [ -f $(DESTDIR)$(infodir)/gm2.info ]; then \
+       -if [ -f gm2$(exeext) ] && [ -f $(DESTDIR)$(infodir)/m2.info ]; then \
          if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
-           install-info --dir-file=$(infodir)/dir 
$(DESTDIR)$(infodir)/gm2.info; \
+           install-info --dir-file=$(infodir)/dir 
$(DESTDIR)$(infodir)/m2.info; \
          else true; fi; \
        else true; fi

Reply via email to