]> sourceware.org Git - automake.git/commitdiff
* automake.in (check_typos): Examine AM_LDFLAGS.
authorTom Tromey <tromey@redhat.com>
Sat, 30 Mar 2002 00:31:43 +0000 (00:31 +0000)
committerTom Tromey <tromey@redhat.com>
Sat, 30 Mar 2002 00:31:43 +0000 (00:31 +0000)
Fixes PR automake/311.

ChangeLog
automake.in

index f954edef72c4a0dea2c57353e1db63f7807898a6..e0ab11ec76ed54283833995b21a7bb1543d3a141 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2002-03-29  Tom Tromey  <tromey@redhat.com>
 
+       * automake.in (check_typos): Examine AM_LDFLAGS.
+       Fixes PR automake/311.
+
        For PR automake/312:
        * lib/am/libtool.am (clean-libtool): Use LTRMS.
        * automake.in (handle_single_transform_list): When processing a
index fce34face18f26f86db95340a748b9a8d1cf8c6e..bd60ba19b14a584c091885331da9f864e8ea583a 100755 (executable)
@@ -3073,6 +3073,9 @@ sub handle_ltlibraries
 # EXTRA_ variables don't contain configure substitutions.
 sub check_typos ()
 {
+    # It is ok if the user sets this particular variable.
+    &examine_variable ('AM_LDFLAGS');
+
     foreach my $varname (keys %var_value)
     {
        foreach my $primary ('_SOURCES', '_LIBADD', '_LDADD', '_LDFLAGS',
@@ -3080,11 +3083,11 @@ sub check_typos ()
        {
            macro_error ($varname,
                         "invalid unused variable name: `$varname'")
-           # Note that a configure variable is always legitimate.
-           # It is natural to name such variables after the
-           # primary, so we explicitly allow it.
-           if $varname =~ /$primary$/ && ! $content_seen{$varname}
-               && ! exists $configure_vars{$varname};
+               # Note that a configure variable is always legitimate.
+               # It is natural to name such variables after the
+               # primary, so we explicitly allow it.
+               if $varname =~ /$primary$/ && ! $content_seen{$varname}
+                  && ! exists $configure_vars{$varname};
        }
     }
 }
This page took 0.036189 seconds and 5 git commands to generate.