All of lore.kernel.org
 help / color / mirror / Atom feed
* x86_emulator distclean failing
@ 2018-11-26 13:04 Paul Durrant
  2018-11-26 13:40 ` Jan Beulich
  0 siblings, 1 reply; 3+ messages in thread
From: Paul Durrant @ 2018-11-26 13:04 UTC (permalink / raw)
  To: xen-devel (xen-devel@lists.xenproject.org)

Anyone else seeing this, or is it just me? This was on a fresh pull of staging about 5 mins ago...

make -C x86_emulator distclean
make[5]: Entering directory '/local/scratch/pauldu/xen/tools/tests/x86_emulator'
make -C 32 clean
make[6]: Entering directory '/local/scratch/pauldu/xen/tools/tests/x86_emulator/32'
make -C 32 clean
make[7]: Entering directory '/local/scratch/pauldu/xen/tools/tests/x86_emulator/32'
make[7]: *** 32: No such file or directory.  Stop.
make[7]: Leaving directory '/local/scratch/pauldu/xen/tools/tests/x86_emulator/32'
../Makefile:191: recipe for target 'clean32' failed
make[6]: *** [clean32] Error 2
make[6]: Leaving directory '/local/scratch/pauldu/xen/tools/tests/x86_emulator/32'
Makefile:191: recipe for target 'clean32' failed
make[5]: *** [clean32] Error 2
make[5]: Leaving directory '/local/scratch/pauldu/xen/tools/tests/x86_emulator'
/local/scratch/pauldu/xen/tools/tests/../../tools/Rules.mk:254: recipe for target 'subdir-distclean-x86_emulator' failed
make[4]: *** [subdir-distclean-x86_emulator] Error 2
make[4]: Leaving directory '/local/scratch/pauldu/xen/tools/tests'
/local/scratch/pauldu/xen/tools/tests/../../tools/Rules.mk:246: recipe for target 'subdirs-distclean' failed
make[3]: *** [subdirs-distclean] Error 2
make[3]: Leaving directory '/local/scratch/pauldu/xen/tools/tests'
/local/scratch/pauldu/xen/tools/../tools/Rules.mk:254: recipe for target 'subdir-distclean-tests' failed
make[2]: *** [subdir-distclean-tests] Error 2
make[2]: Leaving directory '/local/scratch/pauldu/xen/tools'
/local/scratch/pauldu/xen/tools/../tools/Rules.mk:246: recipe for target 'subdirs-distclean' failed
make[1]: *** [subdirs-distclean] Error 2
make[1]: Leaving directory '/local/scratch/pauldu/xen/tools'
Makefile:242: recipe for target 'distclean-tools' failed
make: *** [distclean-tools] Error 2

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: x86_emulator distclean failing
  2018-11-26 13:04 x86_emulator distclean failing Paul Durrant
@ 2018-11-26 13:40 ` Jan Beulich
  2018-11-26 13:50   ` Paul Durrant
  0 siblings, 1 reply; 3+ messages in thread
From: Jan Beulich @ 2018-11-26 13:40 UTC (permalink / raw)
  To: Paul Durrant; +Cc: xen-devel

>>> On 26.11.18 at 14:04, <Paul.Durrant@citrix.com> wrote:
> Anyone else seeing this, or is it just me? This was on a fresh pull of 
> staging about 5 mins ago...

I don't think I ever ran distclean, but I think I can see the issue.
Would you mind trying

--- a/tools/tests/x86_emulator/Makefile
+++ b/tools/tests/x86_emulator/Makefile
@@ -164,7 +164,7 @@ distclean: clean
 install uninstall:
 
 .PHONY: run32 clean32
-ifeq ($(XEN_TARGET_ARCH),x86_64)
+ifeq ($(XEN_COMPILE_ARCH),x86_64)
 run32: $(addsuffix .h,$(TESTCASES)) $(addsuffix -opmask.h,$(OPMASK))
 run32 clean32: %32:
 	$(MAKE) -C 32 $*

Simply an incomplete renamed that I had done when putting
together 52c37f7ab9.

Jan



_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: x86_emulator distclean failing
  2018-11-26 13:40 ` Jan Beulich
@ 2018-11-26 13:50   ` Paul Durrant
  0 siblings, 0 replies; 3+ messages in thread
From: Paul Durrant @ 2018-11-26 13:50 UTC (permalink / raw)
  To: 'Jan Beulich'; +Cc: xen-devel

> -----Original Message-----
> From: Xen-devel [mailto:xen-devel-bounces@lists.xenproject.org] On Behalf
> Of Jan Beulich
> Sent: 26 November 2018 13:41
> To: Paul Durrant <Paul.Durrant@citrix.com>
> Cc: xen-devel <xen-devel@lists.xenproject.org>
> Subject: Re: [Xen-devel] x86_emulator distclean failing
> 
> >>> On 26.11.18 at 14:04, <Paul.Durrant@citrix.com> wrote:
> > Anyone else seeing this, or is it just me? This was on a fresh pull of
> > staging about 5 mins ago...
> 
> I don't think I ever ran distclean, but I think I can see the issue.
> Would you mind trying
> 
> --- a/tools/tests/x86_emulator/Makefile
> +++ b/tools/tests/x86_emulator/Makefile
> @@ -164,7 +164,7 @@ distclean: clean
>  install uninstall:
> 
>  .PHONY: run32 clean32
> -ifeq ($(XEN_TARGET_ARCH),x86_64)
> +ifeq ($(XEN_COMPILE_ARCH),x86_64)
>  run32: $(addsuffix .h,$(TESTCASES)) $(addsuffix -opmask.h,$(OPMASK))
>  run32 clean32: %32:
>  	$(MAKE) -C 32 $*
> 
> Simply an incomplete renamed that I had done when putting
> together 52c37f7ab9.

That appears to do the trick. Thanks,

  Paul

> 
> Jan
> 
> 
> 
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xenproject.org
> https://lists.xenproject.org/mailman/listinfo/xen-devel
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-11-26 13:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-26 13:04 x86_emulator distclean failing Paul Durrant
2018-11-26 13:40 ` Jan Beulich
2018-11-26 13:50   ` Paul Durrant

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.