From: Tom Tromey Date: Mon, 21 Dec 1998 13:22:53 +0000 (+0000) Subject: 1998-12-20 Thomas Tanner X-Git-Tag: Release-1-4~51 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=907c4d15ddc009e226b9f7c05fee226e17d79d06;p=automake.git 1998-12-20 Thomas Tanner * automake.in (handle_libraries, handle_ltlibraries): relax the name checking to not enforce `^lib.*' for the sake of building libtool modules. --- diff --git a/ChangeLog b/ChangeLog index ad7989d2..84352c59 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +1998-12-20 Thomas Tanner + + * 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 * automake.in (do_one_merge_target): Special case diff --git a/automake.in b/automake.in index 095d0231..ef454036 100755 --- a/automake.in +++ b/automake.in @@ -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