]> sourceware.org Git - automake.git/commitdiff
1999-06-18 Thomas Tanner <tanner@ffii.org>
authorTom Tromey <tromey@redhat.com>
Sun, 20 Jun 1999 11:34:07 +0000 (11:34 +0000)
committerTom Tromey <tromey@redhat.com>
Sun, 20 Jun 1999 11:34:07 +0000 (11:34 +0000)
* automake.in (handle_ltlibraries): Check for -module in LDFLAGS,
too.

ChangeLog
THANKS
automake.in

index ffd51295cd7def8b6689bc68934e1429e88fddde..1dd95defb7a47f847abe3c04401cbe76fcdb2c64 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1999-06-18  Thomas Tanner  <tanner@ffii.org>
+
+       * automake.in (handle_ltlibraries): Check for -module in LDFLAGS,
+       too.
+
 1999-06-20 Mark Elbrecht <snowball3@bigfoot.com>
 
        * ylwrap: Handle filenames output by the DOS version of Bison.
diff --git a/THANKS b/THANKS
index 7a90b10d37c8eba321e176bf3ebadf369da4a04a..217e089e5d2106f74159d6945622c8e4e0105b65 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -99,6 +99,7 @@ Steve M. Robbins      steve@nyongwa.montreal.qc.ca
 Tatu Ylonen            ylo@ssh.fi
 The Crimson Binome     steve@nyongwa.montreal.qc.ca
 Thomas Morgan          tmorgan@pobox.com
+Thomas Tanner          tanner@ffii.org
 Tim Goodwin            tjg@star.le.ac.uk
 Ulrich Drepper         drepper@gnu.ai.mit.edu
 Vadim Zeitlin          Vadim.zeitlin@dptmaths.ens-cachan.fr
index 36a0cc65fdfb65fe5d33987ecdf4517b82785c64..719f34a9a12f423e76f8a130a112f7bf7639f1d8 100755 (executable)
@@ -1998,7 +1998,8 @@ sub handle_ltlibraries
 
        # Check that the library fits the standard naming convention.
        $libname_rx = "^lib.*\.la";
-       if (&variable_value ($xlib . '_LDFLAGS') =~ /-module/) 
+       if (&variable_value ($xlib . '_LDFLAGS') =~ /-module/
+           || &variable_value ('LDFLAGS') =~ /-module/) 
        {
                # Relax name checking for libtool modules.
                $libname_rx = "\.la";
This page took 0.03898 seconds and 5 git commands to generate.