From: Stefano Lattarini Date: Sun, 12 Aug 2012 11:54:29 +0000 (+0200) Subject: [ng] rename: am__can_run_installinfo -> am.texi.can-run-installinfo X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f8f26eeabd36fa7993c65497077aa745572b1dd3;p=thirdparty%2Fautomake.git [ng] rename: am__can_run_installinfo -> am.texi.can-run-installinfo * lib/am/texinfos.am: Here. Signed-off-by: Stefano Lattarini --- diff --git a/lib/am/texinfos.am b/lib/am/texinfos.am index 1c33ef593..b35389fa6 100644 --- a/lib/am/texinfos.am +++ b/lib/am/texinfos.am @@ -63,7 +63,7 @@ endif ! %?LOCAL-TEXIS% ## if the user doesn't request it not to be run (through the ## 'AM_UPDATE_INFO_DIR' environment variable). See automake bug#9773 ## and Debian Bug#543992. -am__can_run_installinfo = \ +am.texi.can-run-installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ @@ -165,7 +165,7 @@ install-html-am: .am/install-html $(INSTALL_DATA) $$files "$(DESTDIR)$(infodir)" || exit $$?; \ done @$(POST_INSTALL) - @$(am__can_run_installinfo) || exit 0; \ + @$(am.texi.can-run-installinfo) || exit 0; \ rellist='$(notdir $(and $(infodir),$^))'; \ test -n "$$rellist" || exit 0; \ for relfile in $$rellist; do \ @@ -250,7 +250,7 @@ uninstall-info-am: @$(PRE_UNINSTALL) ## Run two loops here so that we can handle PRE_UNINSTALL and ## NORMAL_UNINSTALL correctly. - @if test -d '$(DESTDIR)$(infodir)' && $(am__can_run_installinfo); then \ + @if test -d '$(DESTDIR)$(infodir)' && $(am.texi.can-run-installinfo); then \ list='$(notdir $(INFO_DEPS))'; for relfile in $$list; do \ ## install-info needs the actual info file. We use the installed one, ## rather than relying on one still being in srcdir or builddir.