]> sourceware.org Git - automake.git/commitdiff
1998-12-20 Thomas Tanner <tanner@gmx.de>
authorTom Tromey <tromey@redhat.com>
Mon, 21 Dec 1998 13:22:53 +0000 (13:22 +0000)
committerTom Tromey <tromey@redhat.com>
Mon, 21 Dec 1998 13:22:53 +0000 (13:22 +0000)
* automake.in (handle_libraries, handle_ltlibraries): relax the
name checking to not enforce `^lib.*' for the sake of building libtool
modules.

ChangeLog
automake.in

index ad7989d21eaec5117b2ebf9774f7ccca7ba57042..84352c59d9132040c1d448c5a531028f3202a6c0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+1998-12-20  Thomas Tanner  <tanner@gmx.de>
+
+       * automake.in (handle_libraries, handle_ltlibraries): relax the
+       name checking to not enforce `^lib.*' for the sake of building libtool 
+       modules.
+
 1998-12-21  Tom Tromey  <tromey@cygnus.com>
 
        * automake.in (do_one_merge_target): Special case
index 095d023167cc7e225f403da1454c63ce14520d55..ef45403647275f018f838c794430762b3689ae91 100755 (executable)
@@ -1550,7 +1550,7 @@ sub handle_libraries
     foreach $onelib (@liblist)
     {
        # Check that the library fits the standard naming convention.
-       if ($onelib !~ /^lib.*\.a$/)
+       if ($onelib !~ /.*\.a$/)
        {
            # FIXME should put line number here.  That means mapping
            # from library name back to variable name.
@@ -1661,7 +1661,7 @@ sub handle_ltlibraries
     foreach $onelib (@liblist)
     {
        # Check that the library fits the standard naming convention.
-       if ($onelib !~ /^lib.*\.la$/)
+       if ($onelib !~ /.*\.la$/)
        {
            # FIXME this should only be a warning for foreign packages
            # FIXME should put line number here.  That means mapping
This page took 0.042606 seconds and 5 git commands to generate.