All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] Makefile: Remove config.status and common.env during 'make distclean'
@ 2014-12-15 10:19 Thomas Huth
  2015-01-08 12:22 ` Thomas Huth
  2015-01-12  9:07 ` [Qemu-devel] [Qemu-trivial] " Michael Tokarev
  0 siblings, 2 replies; 5+ messages in thread
From: Thomas Huth @ 2014-12-15 10:19 UTC (permalink / raw)
  To: qemu-trivial, qemu-devel

config.status and tests/qemu-iotests/common.env are generated files
that should be deleted during 'make distclean'.

Signed-off-by: Thomas Huth <thuth@linux.vnet.ibm.com>
---
 Makefile |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index f505202..6817c6f 100644
--- a/Makefile
+++ b/Makefile
@@ -313,8 +313,8 @@ qemu-%.tar.bz2:
 
 distclean: clean
 	rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
-	rm -f config-all-devices.mak config-all-disas.mak
-	rm -f po/*.mo
+	rm -f config-all-devices.mak config-all-disas.mak config.status
+	rm -f po/*.mo tests/qemu-iotests/common.env
 	rm -f roms/seabios/config.mak roms/vgabios/config.mak
 	rm -f qemu-doc.info qemu-doc.aux qemu-doc.cp qemu-doc.cps qemu-doc.dvi
 	rm -f qemu-doc.fn qemu-doc.fns qemu-doc.info qemu-doc.ky qemu-doc.kys
-- 
1.7.1

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

* Re: [Qemu-devel] [PATCH] Makefile: Remove config.status and common.env during 'make distclean'
  2014-12-15 10:19 [Qemu-devel] [PATCH] Makefile: Remove config.status and common.env during 'make distclean' Thomas Huth
@ 2015-01-08 12:22 ` Thomas Huth
  2015-01-08 17:24   ` Paolo Bonzini
  2015-01-12  9:07 ` [Qemu-devel] [Qemu-trivial] " Michael Tokarev
  1 sibling, 1 reply; 5+ messages in thread
From: Thomas Huth @ 2015-01-08 12:22 UTC (permalink / raw)
  To: Thomas Huth; +Cc: qemu-trivial, qemu-devel

On Mon, 15 Dec 2014 11:19:46 +0100
Thomas Huth <thuth@linux.vnet.ibm.com> wrote:

> config.status and tests/qemu-iotests/common.env are generated files
> that should be deleted during 'make distclean'.
> 
> Signed-off-by: Thomas Huth <thuth@linux.vnet.ibm.com>
> ---
>  Makefile |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/Makefile b/Makefile
> index f505202..6817c6f 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -313,8 +313,8 @@ qemu-%.tar.bz2:
> 
>  distclean: clean
>  	rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
> -	rm -f config-all-devices.mak config-all-disas.mak
> -	rm -f po/*.mo
> +	rm -f config-all-devices.mak config-all-disas.mak config.status
> +	rm -f po/*.mo tests/qemu-iotests/common.env
>  	rm -f roms/seabios/config.mak roms/vgabios/config.mak
>  	rm -f qemu-doc.info qemu-doc.aux qemu-doc.cp qemu-doc.cps qemu-doc.dvi
>  	rm -f qemu-doc.fn qemu-doc.fns qemu-doc.info qemu-doc.ky qemu-doc.kys

ping?

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

* Re: [Qemu-devel] [PATCH] Makefile: Remove config.status and common.env during 'make distclean'
  2015-01-08 12:22 ` Thomas Huth
@ 2015-01-08 17:24   ` Paolo Bonzini
  0 siblings, 0 replies; 5+ messages in thread
From: Paolo Bonzini @ 2015-01-08 17:24 UTC (permalink / raw)
  To: Thomas Huth; +Cc: qemu-trivial, qemu-devel



On 08/01/2015 13:22, Thomas Huth wrote:
> On Mon, 15 Dec 2014 11:19:46 +0100
> Thomas Huth <thuth@linux.vnet.ibm.com> wrote:
> 
>> config.status and tests/qemu-iotests/common.env are generated files
>> that should be deleted during 'make distclean'.
>>
>> Signed-off-by: Thomas Huth <thuth@linux.vnet.ibm.com>
>> ---
>>  Makefile |    4 ++--
>>  1 files changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/Makefile b/Makefile
>> index f505202..6817c6f 100644
>> --- a/Makefile
>> +++ b/Makefile
>> @@ -313,8 +313,8 @@ qemu-%.tar.bz2:
>>
>>  distclean: clean
>>  	rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
>> -	rm -f config-all-devices.mak config-all-disas.mak
>> -	rm -f po/*.mo
>> +	rm -f config-all-devices.mak config-all-disas.mak config.status
>> +	rm -f po/*.mo tests/qemu-iotests/common.env
>>  	rm -f roms/seabios/config.mak roms/vgabios/config.mak
>>  	rm -f qemu-doc.info qemu-doc.aux qemu-doc.cp qemu-doc.cps qemu-doc.dvi
>>  	rm -f qemu-doc.fn qemu-doc.fns qemu-doc.info qemu-doc.ky qemu-doc.kys
> 
> ping?

Applied locally, thanks.

Paolo

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

* Re: [Qemu-devel] [Qemu-trivial] [PATCH] Makefile: Remove config.status and common.env during 'make distclean'
  2014-12-15 10:19 [Qemu-devel] [PATCH] Makefile: Remove config.status and common.env during 'make distclean' Thomas Huth
  2015-01-08 12:22 ` Thomas Huth
@ 2015-01-12  9:07 ` Michael Tokarev
  1 sibling, 0 replies; 5+ messages in thread
From: Michael Tokarev @ 2015-01-12  9:07 UTC (permalink / raw)
  To: Thomas Huth, qemu-trivial, qemu-devel

15.12.2014 13:19, Thomas Huth wrote:
> config.status and tests/qemu-iotests/common.env are generated files
> that should be deleted during 'make distclean'.

Somehow I missed this one previously.  Applied to -trivial now, thank you!
(I'm not sure why did you combine po/*.mo and .../common.env into one line
but that's not a problem really).

/mjt

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

* [Qemu-devel] [PATCH] Makefile: Remove config.status and common.env during 'make distclean'
@ 2014-11-21 15:45 Thomas Huth
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Huth @ 2014-11-21 15:45 UTC (permalink / raw)
  To: qemu-devel

config.status and tests/qemu-iotests/common.env are generated files
that should be deleted during 'make distclean'.

Signed-off-by: Thomas Huth <thuth@linux.vnet.ibm.com>
---
 Makefile |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index f505202..6817c6f 100644
--- a/Makefile
+++ b/Makefile
@@ -313,8 +313,8 @@ qemu-%.tar.bz2:
 
 distclean: clean
 	rm -f config-host.mak config-host.h* config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
-	rm -f config-all-devices.mak config-all-disas.mak
-	rm -f po/*.mo
+	rm -f config-all-devices.mak config-all-disas.mak config.status
+	rm -f po/*.mo tests/qemu-iotests/common.env
 	rm -f roms/seabios/config.mak roms/vgabios/config.mak
 	rm -f qemu-doc.info qemu-doc.aux qemu-doc.cp qemu-doc.cps qemu-doc.dvi
 	rm -f qemu-doc.fn qemu-doc.fns qemu-doc.info qemu-doc.ky qemu-doc.kys
-- 
1.7.1

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

end of thread, other threads:[~2015-01-12  9:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-12-15 10:19 [Qemu-devel] [PATCH] Makefile: Remove config.status and common.env during 'make distclean' Thomas Huth
2015-01-08 12:22 ` Thomas Huth
2015-01-08 17:24   ` Paolo Bonzini
2015-01-12  9:07 ` [Qemu-devel] [Qemu-trivial] " Michael Tokarev
  -- strict thread matches above, loose matches on Subject: below --
2014-11-21 15:45 [Qemu-devel] " Thomas Huth

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.