From 907c4d15ddc009e226b9f7c05fee226e17d79d06 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Mon, 21 Dec 1998 13:22:53 +0000 Subject: [PATCH] 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. --- ChangeLog | 6 ++++++ automake.in | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) 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 -- 2.43.5