summaryrefslogtreecommitdiff
path: root/texinfos.am
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>1997-02-21 07:50:43 +0000
committerTom Tromey <tromey@redhat.com>1997-02-21 07:50:43 +0000
commit1b10e923eef05fb6f2b69224da187a33d54ce513 (patch)
tree6ff0027645c7b4a333fd32bf0730c8c1d7832b06 /texinfos.am
parent056e9fa1e5c45275438e31af77c3ada2a99b615a (diff)
downloadautomake-1b10e923eef05fb6f2b69224da187a33d54ce513.tar.gz
many fixes
Diffstat (limited to 'texinfos.am')
-rw-r--r--texinfos.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/texinfos.am b/texinfos.am
index edd4c25a1..765d2b231 100644
--- a/texinfos.am
+++ b/texinfos.am
@@ -60,7 +60,7 @@ install-info-am: $(INFO_DEPS)
## be relative, for the install.
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"; \
+ echo " $(INSTALL_DATA) $(srcdir)/$$ifile $(infodir)/$$ifile"; \
$(INSTALL_DATA) $(srcdir)/$$ifile $(infodir)/$$ifile; \
else : ; fi; \
done; \
@@ -74,7 +74,7 @@ install-info-am: $(INFO_DEPS)
## instance if you don't have a dir file, install-info will fail. I
## think instead it should create a new dir file for you. This bug
## causes the `make distcheck' target to fail reliably.
- echo "install-info --info-dir=$(infodir) $(infodir)/$$file";\
+ echo " install-info --info-dir=$(infodir) $(infodir)/$$file";\
install-info --info-dir=$(infodir) $(infodir)/$$file; :;\
done; \
else : ; fi