]> sourceware.org Git - automake.git/commitdiff
nothing
authorTom Tromey <tromey@redhat.com>
Fri, 4 Apr 1997 02:38:02 +0000 (02:38 +0000)
committerTom Tromey <tromey@redhat.com>
Fri, 4 Apr 1997 02:38:02 +0000 (02:38 +0000)
Makefile.in

index 4bb40ef150c2dc206d4be11477d1462cf997a53d..2dc36300f2ab1ce40b923f5e0163d377df61c256 100644 (file)
@@ -223,10 +223,11 @@ install-info-am: $(INFO_DEPS)
        @$(NORMAL_INSTALL)
        $(mkinstalldirs) $(infodir)
        @for file in $(INFO_DEPS); do \
-         for ifile in `cd $(srcdir) && echo $$file $$file-[0-9] $$file-[0-9][0-9]`; do \
-           if test -f $(srcdir)/$$ifile; then \
-             echo " $(INSTALL_DATA) $(srcdir)/$$ifile $(infodir)/$$ifile"; \
-             $(INSTALL_DATA) $(srcdir)/$$ifile $(infodir)/$$ifile; \
+         d=$(srcdir); \
+         for ifile in `cd $$d && echo $$file $$file-[0-9] $$file-[0-9][0-9]`; do \
+           if test -f $$d/$$ifile; then \
+             echo " $(INSTALL_DATA) $$d/$$ifile $(infodir)/$$ifile"; \
+             $(INSTALL_DATA) $$d/$$ifile $(infodir)/$$ifile; \
            else : ; fi; \
          done; \
        done
This page took 0.031215 seconds and 5 git commands to generate.