]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
[ng] rename: am__config_aux_dir -> am.conf.aux-dir
authorStefano Lattarini <stefano.lattarini@gmail.com>
Sun, 22 Jul 2012 15:59:13 +0000 (17:59 +0200)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Sun, 22 Jul 2012 15:59:13 +0000 (17:59 +0200)
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
automake.in
lib/am/parallel-tests.am
lib/am/texi-vers.am
t/auxdir.sh
t/auxdir6.sh
t/auxdir7.sh
t/auxdir8.sh
t/distcom2.sh
t/yacc-auxdir.sh

index 3b9740d52a28b4da395beaad870bc77c1cca3ce6..e238106f246922c8016d9e9b1dd11c2febcb8b48 100644 (file)
@@ -1287,7 +1287,7 @@ sub handle_languages
        {
            # Set location of depcomp.
             define_variable ('depcomp', INTERNAL,
-                              '$(SHELL) $(am__config_aux_dir)/depcomp');
+                              '$(SHELL) $(am.conf.aux-dir)/depcomp');
 
            require_conf_file ("$am_file.am", FOREIGN, 'depcomp');
 
@@ -2945,7 +2945,7 @@ sub handle_texinfo_helper ($)
     }
   elsif ($config_aux_dir_set_in_configure_ac)
     {
-      $texinfodir = '$(am__config_aux_dir)';
+      $texinfodir = '$(am.conf.aux-dir)';
       define_variable ('TEXINFO_TEX', INTERNAL, "$texinfodir/texinfo.tex");
       $need_texi_file = 2; # so that we require_conf_file later
     }
@@ -4176,7 +4176,7 @@ sub handle_emacs_lisp
   require_variables ($elfiles[0][0], "Emacs Lisp sources seen", TRUE,
                     'EMACS', 'lispdir');
   require_conf_file ($elfiles[0][0], FOREIGN, 'elisp-comp');
-  define_variable ('elisp_comp', INTERNAL, '$(am__config_aux_dir)/elisp-comp');
+  define_variable ('elisp_comp', INTERNAL, '$(am.conf.aux-dir)/elisp-comp');
 }
 
 # Handle Python
@@ -4188,7 +4188,7 @@ sub handle_python
 
   require_variables ($pyfiles[0][0], "Python sources seen", TRUE, 'PYTHON');
   require_conf_file ($pyfiles[0][0], FOREIGN, 'py-compile');
-  define_variable ('py_compile', INTERNAL, '$(am__config_aux_dir)/py-compile');
+  define_variable ('py_compile', INTERNAL, '$(am.conf.aux-dir)/py-compile');
 }
 
 # Handle Java.
@@ -5070,7 +5070,7 @@ sub lang_yacc_lex_finish
 
   # FIXME: for now, no line number.
   require_conf_file ($configure_ac, FOREIGN, 'ylwrap');
-  define_variable ('YLWRAP', INTERNAL, '$(am__config_aux_dir)/ylwrap');
+  define_variable ('YLWRAP', INTERNAL, '$(am.conf.aux-dir)/ylwrap');
 }
 
 # Given a hash table of linker names, pick the name that has the most
@@ -6520,7 +6520,7 @@ sub push_required_file
   # of $am_config_aux_dir here is deliberate and necessary.
   elsif ($dir eq $config_aux_dir)
     {
-      push_dist_common ('$(am__config_aux_dir)/' . $file);
+      push_dist_common ('$(am.conf.aux-dir)/' . $file);
     }
   # FIXME: another spacial case, for AC_LIBOBJ/AC_LIBSOURCE support.
   # We probably need some refactoring of this function and its callers,
@@ -6903,7 +6903,7 @@ sub generate_makefile ($$)
 
   # Must do this after reading .am file.
   define_variable ('subdir', INTERNAL, $relative_dir);
-  define_variable ('am__config_aux_dir', INTERNAL, $am_config_aux_dir);
+  define_variable ('am.conf.aux-dir', INTERNAL, $am_config_aux_dir);
 
   # If DIST_SUBDIRS is defined, make sure SUBDIRS is, so that
   # recursive rules are enabled.
index 19e21a623f2b709fd142c74deed842a77f902525..61d3c8a5790d181aa271876a83d2592968bdf253 100644 (file)
@@ -70,7 +70,7 @@ am__tpfx = \
 !
 ## FIXME: This will pick up the default from the environment; are we sure
 ## FIXME: we want that?
-!$$(call am__tpfx,$1)LOG_DRIVER ?= $(SHELL) $(am__config_aux_dir)/test-driver
+!$$(call am__tpfx,$1)LOG_DRIVER ?= $(SHELL) $(am.conf.aux-dir)/test-driver
 !
 !%.log %.trs: %$1 $$($$(call am__tpfx,$1)LOG_DEPENDENCIES)
 !      @$$(call am__runtest,$$(call am__tpfx,$1))
index 0608e0b814f111578d5ec38d4a1b4a0fa3ebef3b..1053dcd73fdce911360e7cb80c8846b17416c61b 100644 (file)
@@ -28,7 +28,7 @@ am.dist.common-files += %VTEXI% %STAMPVTI%
 ## in this file.)
 %STAMPVTI%: %TEXI% $(top_srcdir)/configure
        @$(am__ensure_target_dir_exists)
-       @(set `$(SHELL) $(am__config_aux_dir)/mdate-sh $<`; \
+       @(set `$(SHELL) $(am.conf.aux-dir)/mdate-sh $<`; \
        echo "@set UPDATED $$1 $$2 $$3"; \
        echo "@set UPDATED-MONTH $$2 $$3"; \
        echo "@set EDITION $(VERSION)"; \
index ce3d1886127b45d8fed6254cbdd1c689defc2b6e..8a6b28e2fc4db8249eaa7d79f56b3f2db71bc7e5 100755 (executable)
@@ -33,6 +33,6 @@ END
 $ACLOCAL
 $AUTOMAKE ././Makefile
 
-grep '^am__config_aux_dir = \$(top_srcdir)/\./\.$' Makefile.in
+grep '^am\.conf\.aux-dir = \$(top_srcdir)/\./\.$' Makefile.in
 
 :
index c071fe71722118ca7682b4e2aa278a6189ff3982..a7602e5a85bc3d6b77503ea54970e72f5cd60374 100755 (executable)
@@ -39,7 +39,7 @@ mkdir subdir auxdir
 $ACLOCAL
 $AUTOMAKE
 
-grep '^am__config_aux_dir = \$(top_srcdir)/auxdir$' Makefile.in
-grep '^am__config_aux_dir = \$(top_srcdir)/auxdir$' subdir/Makefile.in
+grep '^am\.conf\.aux-dir = \$(top_srcdir)/auxdir$' Makefile.in
+grep '^am\.conf\.aux-dir = \$(top_srcdir)/auxdir$' subdir/Makefile.in
 
 :
index 0d01d247bc9735e94b5690aa523606fcafb33f13..c17bf86c28a943d22f5d3894202c6915a9f1dbc6 100755 (executable)
@@ -36,7 +36,7 @@ mkdir subdir
 $ACLOCAL
 $AUTOMAKE
 
-grep '^am__config_aux_dir = \$(top_srcdir)$' Makefile.in
-grep '^am__config_aux_dir = \$(top_srcdir)$' subdir/Makefile.in
+grep '^am\.conf\.aux-dir = \$(top_srcdir)$' Makefile.in
+grep '^am\.conf\.aux-dir = \$(top_srcdir)$' subdir/Makefile.in
 
 :
index 6c6e0554e3ceb582a61146f59f1f2137c625eed4..1e42ebb01fc7bd3ef08645a74a05aeac003e6050 100755 (executable)
@@ -35,7 +35,7 @@ mkdir subdir
 $ACLOCAL
 $AUTOMAKE
 
-grep '^am__config_aux_dir = \$(top_srcdir)$' Makefile.in
-grep '^am__config_aux_dir = \$(top_srcdir)$' subdir/Makefile.in
+grep '^am\.conf\.aux-dir = \$(top_srcdir)$' Makefile.in
+grep '^am\.conf\.aux-dir = \$(top_srcdir)$' subdir/Makefile.in
 
 :
index b96eefd61adbbca1d8d04a8761592d6331bf9a4c..794d2ffd1cba22f676e104a8669d8d1382380e62 100755 (executable)
@@ -57,11 +57,11 @@ for opt in '' --no-force; do
   cat dc.txt # For debugging.
   cat subdir/dc.txt # Likewise.
 
-  $FGREP ' $(am__config_aux_dir)/depcomp ' subdir/dc.txt
+  $FGREP ' $(am.conf.aux-dir)/depcomp ' subdir/dc.txt
   # The 'compile' script will be listed in the am.dist.common-files of
   # the top-level Makefile because it's required in configure.ac
   # (by AM_PROG_CC_C_O).
-  $FGREP ' $(am__config_aux_dir)/compile ' dc.txt \
+  $FGREP ' $(am.conf.aux-dir)/compile ' dc.txt \
     || $FGREP ' compile ' dc.txt
 
 done
index d531758f2eec3c6551b16cca75598acff49a8d03..7e5db72f20d4e82250215e198b1aee594620a871 100755 (executable)
@@ -50,7 +50,7 @@ test -f aux1/ylwrap
 test ! -e ylwrap
 test ! -e sub/ylwrap
 grep -i 'ylwrap' Makefile.in sub/Makefile.in # For debugging.
-$FGREP '$(am__config_aux_dir)/ylwrap' Makefile.in
-$FGREP '$(am__config_aux_dir)/ylwrap' sub/Makefile.in
+$FGREP '$(am.conf.aux-dir)/ylwrap' Makefile.in
+$FGREP '$(am.conf.aux-dir)/ylwrap' sub/Makefile.in
 
 :