Collin Funk <[email protected]> writes:
>> Do you have time to investigate the cause, and why it depends on
>> --single-configure, please?
>
> Sure, I'll look into it today.
The issue is that link-warning is in gltests/ and the following Makefile
line:
link-warning.h: $(top_srcdir)/build-aux/snippet/link-warning.h
turns into:
link-warning: build-aux/snippet/link-warning.h
Since the Makefile is in gltests/ it should actually be something like
this:
link-warning: ../build-aux/snippet/link-warning.h
I had a look at using '$(abs_aux_dir)/snippet/link-warning.h' but that
breaks the build in gllib/.
My memory of GLTestDir.py isn't the greatest so I can't think of a fix
at the moment. As far as I can tell though this module isn't a
dependency of any other module and it doesn't have a test case. Can it
just be given this treatment?
Usable-in-testdir:
no
Collin