Commit a89f5df3 by Joseph Myers Committed by Joseph Myers

Makefile.in ($(DESTDIR)$(infodir)/%.info): Don't condition calling install-info…

Makefile.in ($(DESTDIR)$(infodir)/%.info): Don't condition calling install-info on $(DESTDIR)$(infodir)/dir already being...

	* Makefile.in ($(DESTDIR)$(infodir)/%.info): Don't condition
	calling install-info on $(DESTDIR)$(infodir)/dir already being
	present.

From-SVN: r81256
parent 40f0b3ee
2004-04-28 Joseph S. Myers <jsm@polyomino.org.uk>
* Makefile.in ($(DESTDIR)$(infodir)/%.info): Don't condition
calling install-info on $(DESTDIR)$(infodir)/dir already being
present.
2004-04-28 Paul Brook <paul@codesourcery.com> 2004-04-28 Paul Brook <paul@codesourcery.com>
* dwarf2out.c (mem_loc_descriptor): Handle shifts. * dwarf2out.c (mem_loc_descriptor): Handle shifts.
......
...@@ -2985,10 +2985,8 @@ $(DESTDIR)$(infodir)/%.info: doc/%.info installdirs ...@@ -2985,10 +2985,8 @@ $(DESTDIR)$(infodir)/%.info: doc/%.info installdirs
done; \ done; \
else true; fi else true; fi
-if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \ -if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
if [ -f $(DESTDIR)$(infodir)/dir ] ; then \ if [ -f $@ ]; then \
if [ -f $@ ]; then \ install-info --dir-file=$(DESTDIR)$(infodir)/dir $@; \
install-info --dir-file=$(DESTDIR)$(infodir)/dir $@; \
else true; fi; \
else true; fi; \ else true; fi; \
else true; fi; else true; fi;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment