qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL for-2.10 0/1] bugfix for s390x
@ 2017-08-15  7:31 Cornelia Huck
  2017-08-15  7:31 ` [Qemu-devel] [PULL for-2.10 1/1] pc-bios/s390-ccw: Use rm command during make clean Cornelia Huck
  2017-08-15  9:40 ` [Qemu-devel] [PULL for-2.10 0/1] bugfix for s390x Peter Maydell
  0 siblings, 2 replies; 3+ messages in thread
From: Cornelia Huck @ 2017-08-15  7:31 UTC (permalink / raw)
  To: peter.maydell; +Cc: qemu-devel, borntraeger, agraf, thuth, Cornelia Huck

The following changes since commit 83c3a1f61673ef554facf4d6d29ed56c5a219f9d:

  xlnx-qspi: add a property for mmio-execution (2017-08-14 14:17:18 +0100)

are available in the git repository at:

  git://github.com/cohuck/qemu tags/s390x-20170815

for you to fetch changes up to 88b3739acdec0b8ccdbb65425b0d31235e2c7ca3:

  pc-bios/s390-ccw: Use rm command during make clean (2017-08-15 09:06:01 +0200)

----------------------------------------------------------------
Regression fix for 'make clean' on s390x.

----------------------------------------------------------------

Eric Farman (1):
  pc-bios/s390-ccw: Use rm command during make clean

 pc-bios/s390-ccw/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.13.5

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

* [Qemu-devel] [PULL for-2.10 1/1] pc-bios/s390-ccw: Use rm command during make clean
  2017-08-15  7:31 [Qemu-devel] [PULL for-2.10 0/1] bugfix for s390x Cornelia Huck
@ 2017-08-15  7:31 ` Cornelia Huck
  2017-08-15  9:40 ` [Qemu-devel] [PULL for-2.10 0/1] bugfix for s390x Peter Maydell
  1 sibling, 0 replies; 3+ messages in thread
From: Cornelia Huck @ 2017-08-15  7:31 UTC (permalink / raw)
  To: peter.maydell
  Cc: qemu-devel, borntraeger, agraf, thuth, Eric Farman, Cornelia Huck

From: Eric Farman <farman@linux.vnet.ibm.com>

This reverts a change that replaced the "rm -f" command with the
undefined variable RM (expected to be set by make), and causes the
"make clean" command to fail for a s390 target:

make[1]: Entering directory '/usr/src/qemu/build/pc-bios/s390-ccw'
rm -f *.timestamp
*.o *.d *.img *.elf *~ *.a
/bin/sh: *.o: command not found
Makefile:39: recipe for target 'clean' failed
make[1]: *** [clean] Error 127
make[1]: Leaving directory '/usr/src/qemu/build/pc-bios/s390-ccw'
Makefile:489: recipe for target 'clean' failed
make: *** [clean] Error 1

Fixes: 3e4415a751d2 ("pc-bios/s390-ccw: Add core files for the network
                      bootloading program")
Signed-off-by: Eric Farman <farman@linux.vnet.ibm.com>
Message-Id: <20170814204450.24118-2-farman@linux.vnet.ibm.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
---
 pc-bios/s390-ccw/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pc-bios/s390-ccw/Makefile b/pc-bios/s390-ccw/Makefile
index cbae74522a..6d0c2ee691 100644
--- a/pc-bios/s390-ccw/Makefile
+++ b/pc-bios/s390-ccw/Makefile
@@ -36,4 +36,4 @@ s390-netboot.img:
 endif
 
 clean:
-	$(RM) *.o *.d *.img *.elf *~ *.a
+	rm -f *.o *.d *.img *.elf *~ *.a
-- 
2.13.5

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

* Re: [Qemu-devel] [PULL for-2.10 0/1] bugfix for s390x
  2017-08-15  7:31 [Qemu-devel] [PULL for-2.10 0/1] bugfix for s390x Cornelia Huck
  2017-08-15  7:31 ` [Qemu-devel] [PULL for-2.10 1/1] pc-bios/s390-ccw: Use rm command during make clean Cornelia Huck
@ 2017-08-15  9:40 ` Peter Maydell
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Maydell @ 2017-08-15  9:40 UTC (permalink / raw)
  To: Cornelia Huck
  Cc: QEMU Developers, Christian Borntraeger, Alexander Graf,
	Thomas Huth

On 15 August 2017 at 08:31, Cornelia Huck <cohuck@redhat.com> wrote:
> The following changes since commit 83c3a1f61673ef554facf4d6d29ed56c5a219f9d:
>
>   xlnx-qspi: add a property for mmio-execution (2017-08-14 14:17:18 +0100)
>
> are available in the git repository at:
>
>   git://github.com/cohuck/qemu tags/s390x-20170815
>
> for you to fetch changes up to 88b3739acdec0b8ccdbb65425b0d31235e2c7ca3:
>
>   pc-bios/s390-ccw: Use rm command during make clean (2017-08-15 09:06:01 +0200)
>
> ----------------------------------------------------------------
> Regression fix for 'make clean' on s390x.
>
> ----------------------------------------------------------------
>
> Eric Farman (1):
>   pc-bios/s390-ccw: Use rm command during make clean
>
>  pc-bios/s390-ccw/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied, thanks.

-- PMM

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

end of thread, other threads:[~2017-08-15  9:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-15  7:31 [Qemu-devel] [PULL for-2.10 0/1] bugfix for s390x Cornelia Huck
2017-08-15  7:31 ` [Qemu-devel] [PULL for-2.10 1/1] pc-bios/s390-ccw: Use rm command during make clean Cornelia Huck
2017-08-15  9:40 ` [Qemu-devel] [PULL for-2.10 0/1] bugfix for s390x Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).