From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54115) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fQwXz-0001Mi-OO for qemu-devel@nongnu.org; Thu, 07 Jun 2018 11:09:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fQwXy-0001c2-RJ for qemu-devel@nongnu.org; Thu, 07 Jun 2018 11:09:55 -0400 Date: Thu, 7 Jun 2018 11:09:47 -0400 From: Jeff Cody Message-ID: <20180607150947.GP11303@localhost.localdomain> References: <20180531212435.165261-1-eblake@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180531212435.165261-1-eblake@redhat.com> Subject: Re: [Qemu-devel] [Qemu-block] [PATCH] block: Ignore generated job QAPI files List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eric Blake Cc: qemu-devel@nongnu.org, kwolf@redhat.com, qemu-block@nongnu.org, mreitz@redhat.com On Thu, May 31, 2018 at 04:24:35PM -0500, Eric Blake wrote: > Commit bf42508f introduced new generated files; make sure they > don't get accidentally committed from an in-tree build. > > Signed-off-by: Eric Blake Not sure which maintainer this ultimately goes through, but since it references auto-generated block job related files, I'll go ahead and run it through my repo: Applied to my block branch: git://github.com/codyprime/qemu-kvm-jtc block > --- > .gitignore | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/.gitignore b/.gitignore > index 81e1f2fb0f1..9da3b3e6267 100644 > --- a/.gitignore > +++ b/.gitignore > @@ -36,6 +36,7 @@ > /qapi/qapi-commands-common.[ch] > /qapi/qapi-commands-crypto.[ch] > /qapi/qapi-commands-introspect.[ch] > +/qapi/qapi-commands-job.[ch] > /qapi/qapi-commands-migration.[ch] > /qapi/qapi-commands-misc.[ch] > /qapi/qapi-commands-net.[ch] > @@ -53,6 +54,7 @@ > /qapi/qapi-events-common.[ch] > /qapi/qapi-events-crypto.[ch] > /qapi/qapi-events-introspect.[ch] > +/qapi/qapi-events-job.[ch] > /qapi/qapi-events-migration.[ch] > /qapi/qapi-events-misc.[ch] > /qapi/qapi-events-net.[ch] > @@ -71,6 +73,7 @@ > /qapi/qapi-types-common.[ch] > /qapi/qapi-types-crypto.[ch] > /qapi/qapi-types-introspect.[ch] > +/qapi/qapi-types-job.[ch] > /qapi/qapi-types-migration.[ch] > /qapi/qapi-types-misc.[ch] > /qapi/qapi-types-net.[ch] > @@ -88,6 +91,7 @@ > /qapi/qapi-visit-common.[ch] > /qapi/qapi-visit-crypto.[ch] > /qapi/qapi-visit-introspect.[ch] > +/qapi/qapi-visit-job.[ch] > /qapi/qapi-visit-migration.[ch] > /qapi/qapi-visit-misc.[ch] > /qapi/qapi-visit-net.[ch] > -- > 2.14.3 > >