automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

FYI: useless tabs before variable definitions


From: Pavel Roskin
Subject: FYI: useless tabs before variable definitions
Date: Wed, 21 Feb 2001 10:33:19 -0500 (EST)

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

[Prev in Thread] Current Thread [Next in Thread]