[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: standards for info install
From: |
Karl Berry |
Subject: |
Re: standards for info install |
Date: |
Thu, 18 Feb 2010 17:00:08 GMT |
Here is what I've come up with for the install-info example.
Let me know if problems.
do-install-info: foo.info
$(NORMAL_INSTALL)
# There may be a newer info file in . than in srcdir.
-if test -f foo.info; then d=.; \
else d=$(srcdir); fi
$(INSTALL_DATA) $$d/foo.info \
$(DESTDIR)$(infodir)/foo.info
# Run install-info only if it exists.
# Use `if' instead of just prepending `-' to the
# line so we notice real errors from install-info.
# Use `$(SHELL) -c' because some shells do not
# fail gracefully when there is an unknown command.
$(POST_INSTALL)
if $(SHELL) -c 'install-info --version' \
>/dev/null 2>&1; then \
install-info --dir-file=$(DESTDIR)$(infodir)/dir \
$(DESTDIR)$(infodir)/foo.info; \
else true; fi
- standards for info install, Karl Berry, 2010/02/10
- Re: standards for info install, Ralf Wildenhues, 2010/02/11
- Re: standards for info install, Karl Berry, 2010/02/11
- Re: standards for info install,
Karl Berry <=
- Re: standards for info install, Aubrey Jaffer, 2010/02/19
- Re: standards for info install, Karl Berry, 2010/02/18
- Re: standards for info install, Aubrey Jaffer, 2010/02/20
- Re: standards for info install, Ralf Wildenhues, 2010/02/21
- Re: standards for info install, Karl Berry, 2010/02/21