Hello,
Nick Brown writes:
> On Mon, 2017-06-05 at 00:45 +0200, Mathieu Lirzin wrote:
>>
>> Nick Brown writes:
>>
>> > Something like:
>> > ./autogen.sh
>> > ./configure
>> > make check-TESTS
>> > will fail, unless 'make check' is run before 'make check-TESTS'
>> > for
>> > Makef
On Mon, 2017-06-05 at 00:45 +0200, Mathieu Lirzin wrote:
> Hello Nick,
>
> Nick Brown writes:
>
> > Something like:
> > ./autogen.sh
> > ./configure
> > make check-TESTS
> > will fail, unless 'make check' is run before 'make check-TESTS'
> > for
> > Makefile.am snippet like:
> >
Hello Nick,
Nick Brown writes:
> Something like:
> ./autogen.sh
> ./configure
> make check-TESTS
> will fail, unless 'make check' is run before 'make check-TESTS' for
> Makefile.am snippet like:
>
> check_PROGRAMS = foo
> check_SCRIPTS = run_foo_wrapper.sh
> TESTS = $(check_SCRI
Something like:
./autogen.sh
./configure
make check-TESTS
will fail, unless 'make check' is run before 'make check-TESTS' for
Makefile.am snippet like:
check_PROGRAMS = foo
check_SCRIPTS = run_foo_wrapper.sh
TESTS = $(check_SCRIPTS)
---
lib/am/check.am | 3 ++-
1 file changed,