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
So that you can do:
DESTDIR=`pwd`/dist/xenlptinstall/usr/lib/debug
mkdir -p $DESTDIR
BASEDIR=`pwd`/xen XEN_ROOT=`pwd` make -C xen/test -f `pwd`/xen/Rules.mk install
or such.
Signed-off-by: Konrad Rzeszutek Wilk
---
xen/test/Makefile | 4
1 file changed, 4 insertions(+)
diff --git a/xen/t