Hello!

When you modify Automake and commit your changes it's often a good idea to
run the new automake in the automake working directory and check the
difference in Makefile.in.

This trick would show you that the variables "host_alias" and others are
now preceeded by tabs. This is not good.

ChangeLog:
        * header-vars.am: Remove tabs before variable definitions.

__________________________
--- header-vars.am
+++ header-vars.am
@@ -81,9 +81,9 @@
 ## _triplet values?
 ## FIXME: this should probably use generic %configure_vars method.
 ## Let's wait until we rely upon traces.
-?BUILD?        build_alias = @build_alias@
-?BUILD?        build_triplet = @build@
-?HOST? host_alias = @host_alias@
-?HOST? host_triplet = @host@
-?TARGET?       target_alias = @target_alias@
-?TARGET?       target_triplet = @target@
+?BUILD?build_alias = @build_alias@
+?BUILD?build_triplet = @build@
+?HOST?host_alias = @host_alias@
+?HOST?host_triplet = @host@
+?TARGET?target_alias = @target_alias@
+?TARGET?target_triplet = @target@
__________________________

Regards,
Pavel Roskin


Reply via email to