Thu Apr 3 19:07:59 1997 Tom Tromey <tromey@cygnus.com>
+ * texinfos.am (install-info-am): If --cygnus, then info file can
+ be in build dir. From David Zaroski.
+
* ltlibrary.am (@LTLIBRARY@): use @RPATH@, not explicit -rpath.
* automake.in (handle_ltlibraries): Treat EXTRA_ libraries
Andreas Schwab <schwab@lamothe.informatik.uni-dortmund.de>
Anthony Green <green@cygnus.com>
David A. Swierczek <swiercze@mr.med.ge.com>
+David Zaroski <cz253@cleveland.Freenet.Edu>
Dieter Baron <dillo@stieltjes.smc.univie.ac.at>
Erick Branderhorst <branderh@iaehv.nl>
François Pinard <pinard@iro.umontreal.ca>
@$(NORMAL_INSTALL)
$(mkinstalldirs) $(infodir)
@for file in $(INFO_DEPS); do \
+CYGNUS if test -f $$file; then d=.; else d=$(srcdir); fi; \
+NOTCYGNUS d=$(srcdir); \
## We use these strange circumlocutions because we want the "ifile" to
## 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"; \
- $(INSTALL_DATA) $(srcdir)/$$ifile $(infodir)/$$ifile; \
+ 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
@$(NORMAL_INSTALL)
$(mkinstalldirs) $(infodir)
@for file in $(INFO_DEPS); do \
+CYGNUS if test -f $$file; then d=.; else d=$(srcdir); fi; \
+NOTCYGNUS d=$(srcdir); \
## We use these strange circumlocutions because we want the "ifile" to
## 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"; \
- $(INSTALL_DATA) $(srcdir)/$$ifile $(infodir)/$$ifile; \
+ 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