* automake.in (define_compiler_variable): Don't define variable
authorTom Tromey <tromey@redhat.com>
Thu, 25 Mar 1999 21:57:14 +0000 (21:57 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 25 Mar 1999 21:57:14 +0000 (21:57 +0000)
with trailing `_'.

ChangeLog
automake.in

index 84fe16c..a7d1242 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1999-03-25  Tom Tromey  <tromey@cygnus.com>
+
+       * automake.in (define_compiler_variable): Don't define variable
+       with trailing `_'.
+
 1999-03-25  Alexandre Oliva  <oliva@dcc.unicamp.br>
 
        * automake.in (LDADD): accept -dlopen and -dlpreopen here
index 085159f..3ad8d92 100755 (executable)
@@ -5707,7 +5707,7 @@ sub define_configure_variable
 sub define_compiler_variable
 {
     local ($var, $ltcompile, $value) = @_;
-    local ($name) = $var . ($use_dependencies ? '_' : '');
+    local ($name) = $var;
     &define_variable ($name, $value);
     &define_variable ('LT' . $name, $ltcompile . $value)
        if $seen_libtool;