All of lore.kernel.org
 help / color / mirror / Atom feed
From: Juan Quintela <quintela@redhat.com>
To: qemu-devel@nongnu.org
Cc: dgilbert@redhat.com, lvivier@redhat.com, peterx@redhat.com
Subject: [Qemu-devel] [PATCH v3 01/10] configure: We don't want to clean configuration files
Date: Wed, 22 Aug 2018 11:54:12 +0200	[thread overview]
Message-ID: <20180822095421.11765-2-quintela@redhat.com> (raw)
In-Reply-To: <20180822095421.11765-1-quintela@redhat.com>

If you don't want to compile everything, you configure
config-devices.mak.  And then make clean remove it, and make will
create a default one without your configuration.  Fix it by not
removing it on clean target.  Remove it instead on distclean.

Signed-off-by: Juan Quintela <quintela@redhat.com>

--

Remove it instead on distclean.

Signed-off-by: Juan Quintela <quintela@redhat.com>
---
 Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index b7c6e57de6..fe623e4634 100644
--- a/Makefile
+++ b/Makefile
@@ -752,7 +752,7 @@ clean:
 	if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \
 	rm -f $$d/qemu-options.def; \
         done
-	rm -f $(SUBDIR_DEVICES_MAK) config-all-devices.mak
+	rm -f config-all-devices.mak
 
 VERSION ?= $(shell cat VERSION)
 
@@ -764,6 +764,7 @@ 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 qemu-monitor-info.texi
 	rm -f config-all-devices.mak config-all-disas.mak config.status
+	rm -f $(SUBDIR_DEVICES_MAK)
 	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
-- 
2.17.1

  reply	other threads:[~2018-08-22  9:54 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-22  9:54 [Qemu-devel] [PATCH v3 00/10] Don't check disabled drivers Juan Quintela
2018-08-22  9:54 ` Juan Quintela [this message]
2018-08-22 10:08   ` [Qemu-devel] [PATCH v3 01/10] configure: We don't want to clean configuration files Thomas Huth
2018-08-22 14:24     ` Juan Quintela
2018-08-22  9:54 ` [Qemu-devel] [PATCH v3 02/10] check: Use land/lor when possible Juan Quintela
2018-08-22 10:13   ` Thomas Huth
2018-08-22 14:28     ` Juan Quintela
2018-08-22  9:54 ` [Qemu-devel] [PATCH v3 03/10] check: Only test isa-testdev when it is compiled in Juan Quintela
2018-08-22 10:18   ` Thomas Huth
2018-08-22 14:30     ` Juan Quintela
2018-08-22 16:34     ` Juan Quintela
2018-08-22  9:54 ` [Qemu-devel] [PATCH v3 04/10] check: Only test usb-xhci-nec " Juan Quintela
2018-08-22 10:22   ` Thomas Huth
2018-08-22 14:32     ` Juan Quintela
2018-08-22  9:54 ` [Qemu-devel] [PATCH v3 05/10] x86_64-softmmu: Configuration is identical to i386-softmmu Juan Quintela
2018-08-22 10:23   ` Thomas Huth
2018-08-22  9:54 ` [Qemu-devel] [PATCH v3 06/10] check: Only test ivshm when it is compiled in Juan Quintela
2018-08-22 10:26   ` Thomas Huth
2018-08-22 14:36     ` Juan Quintela
2018-08-22 14:43       ` Thomas Huth
2018-08-22  9:54 ` [Qemu-devel] [PATCH v3 07/10] check: Only test boot-serial when sga " Juan Quintela
2018-08-22 10:30   ` Thomas Huth
2018-08-22 14:37     ` Juan Quintela
2018-08-23  7:43       ` Gerd Hoffmann
2018-08-23  8:05         ` Thomas Huth
2018-08-23  9:48           ` Gerd Hoffmann
2018-08-23  9:53             ` Daniel P. Berrangé
2018-08-23 10:27               ` Gerd Hoffmann
2018-08-23 11:06               ` Juan Quintela
2018-08-27 10:53               ` Gerd Hoffmann
2018-08-28  8:19                 ` Daniel P. Berrangé
2018-08-28 10:20                   ` Gerd Hoffmann
2018-08-28 10:31                     ` Daniel P. Berrangé
2018-08-22  9:54 ` [Qemu-devel] [PATCH v3 08/10] check: Move VMXNET3 test to common Juan Quintela
2018-08-22 10:34   ` Thomas Huth
2018-08-22 10:41     ` Juan Quintela
2018-08-22 10:43       ` Thomas Huth
2018-08-22 14:39         ` Juan Quintela
2018-08-22  9:54 ` [Qemu-devel] [PATCH v3 09/10] check: Move endianess " Juan Quintela
2018-08-22 10:36   ` Thomas Huth
2018-08-22  9:54 ` [Qemu-devel] [PATCH v3 10/10] check: Move wdt_ib700 " Juan Quintela
2018-08-22 10:37   ` Thomas Huth

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180822095421.11765-2-quintela@redhat.com \
    --to=quintela@redhat.com \
    --cc=dgilbert@redhat.com \
    --cc=lvivier@redhat.com \
    --cc=peterx@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.