eg
dists/tests/usr/lib/debug/some-livepath-thing
?
This would probably be achieved by having dist-tests set
DESTDIR=$(DISTDIR)/tests, eg
dist-tests: DESTDIR=$(DISTDIR)/tests
dist-tests: install-tests
Then `make install-tests' should default DESTDIR to / and put things
in /usr/lib
>>> On 17.05.17 at 22:00, wrote:
> --- a/xen/test/Makefile
> +++ b/xen/test/Makefile
> @@ -5,3 +5,7 @@ tests:
> .PHONY: clean
> clean::
> $(MAKE) -f $(BASEDIR)/Rules.mk -C livepatch clean
> +
> +.PHONY: install
> +install:
> + $(MAKE) -f $(BASEDIR)/Rules.mk -C livepatch install
If we