From: Tom Tromey Date: Mon, 21 Dec 1998 13:22:54 +0000 (+0000) Subject: 1998-12-20 Thomas Tanner X-Git-Tag: Release-1-4~49 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b6b7f68cbcb38f2f4c4beb2eb9dad1e6a6694756;p=thirdparty%2Fautomake.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 ad7989d21..84352c59d 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 095d02316..ef4540364 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