Re: [Xen-devel] [PATCH] livepatch/Makefile: Add 'install' stanza [and 1 more messages]

2017-05-18 Thread Ian Jackson
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

Re: [Xen-devel] [PATCH] livepatch/Makefile: Add 'install' stanza

2017-05-18 Thread Jan Beulich
>>> 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

[Xen-devel] [PATCH] livepatch/Makefile: Add 'install' stanza

2017-05-17 Thread Konrad Rzeszutek Wilk
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