]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
[ng] rename: am__can_run_installinfo -> am.texi.can-run-installinfo
authorStefano Lattarini <stefano.lattarini@gmail.com>
Sun, 12 Aug 2012 11:54:29 +0000 (13:54 +0200)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Sun, 12 Aug 2012 11:54:29 +0000 (13:54 +0200)
* lib/am/texinfos.am: Here.

Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
lib/am/texinfos.am

index 1c33ef593b615a7fb2741d4f6354b5cae25fed94..b35389fa6eeabf6e180314fb71337b0ec9bb248b 100644 (file)
@@ -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.