* automake.in (handle_libraries): Allow libraries to lie in
a subdirectory by constraining only the basename to start
with 'lib', not the whole path.
2001-07-16 Alexandre Duret-Lutz <duret_g@epita.fr>
+ * automake.in (handle_libraries): Allow libraries to lie in
+ a subdirectory by constraining only the basename to start
+ with 'lib', not the whole path.
+
+2001-07-16 Alexandre Duret-Lutz <duret_g@epita.fr>
+
* tests/subobj8.test: New file.
* tests/Makefile.am (XFAIL_TESTS, TESTS): Add subobj8.test.
foreach my $onelib (@liblist)
{
# Check that the library fits the standard naming convention.
- if ($onelib !~ /^lib.*\.a$/)
+ if ($onelib !~ m%^(?:.*/)?lib[^/]*\.a$%)
{
# FIXME should put line number here. That means mapping
# from library name back to variable name.
_am_quote = @_am_quote@
install_sh = @install_sh@
-XFAIL_TESTS = subdir5.test
+XFAIL_TESTS = subdir5.test subobj8.test
TESTS = \
acinclude.test \
subobj5.test \
subobj6.test \
subobj7.test \
+subobj8.test \
subst.test \
suffix.test \
suffix2.test \