[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: allow (sub)packages to share files in subpackages
From: |
Ralf Wildenhues |
Subject: |
Re: allow (sub)packages to share files in subpackages |
Date: |
Thu, 23 Mar 2006 07:46:41 +0100 |
User-agent: |
Mutt/1.5.9i |
Hi Alexandre,
* Alexandre Duret-Lutz wrote on Thu, Mar 23, 2006 at 07:31:56AM CET:
> >>> "RW" == Ralf Wildenhues <address@hidden> writes:
>
> RW> Hmm. AFAIK the make launched won't necessarily override the
> RW> distdir = $(PACKAGE)-$(VERSION)
>
> RW> which it reads from the Makefile, with
> RW> distdir="$$distdir/$$subdir"
>
> RW> which it gets on its command line.
>
> That would be new to me. Do you think of a particular implementation?
D'oh. I've always thought *that* to be the reason for
make check TESTS='only some tests'
not working. But that's not true! It's because the check-am rule calls
$(MAKE) $(AM_MAKEFLAGS) check-TESTS
so the information is lost only for the second make! (I know you knew
all this, but I had to make it clear to myself.)
Can we fix this somehow? For example, by either
$(MAKE) $(AM_MAKEFLAGS) check-TESTS TESTS='$(TESTS)'
or by simply avoiding the sub-make at all? (I will try to find this out
myself, but maybe you know the answer right away). Hmm, the addition on
the command line may be too long, given very many tests.
Cheers,
Ralf