From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: Re: [PATCH 1/2] libxl: don't delete xenlight.pc.in when cleaning Date: Tue, 20 Jan 2015 11:53:39 +0000 Message-ID: <1421754819.10440.241.camel@citrix.com> References: <1421753352-30798-1-git-send-email-wei.liu2@citrix.com> <1421753352-30798-2-git-send-email-wei.liu2@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1421753352-30798-2-git-send-email-wei.liu2@citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Wei Liu Cc: Ian Jackson , xen-devel@lists.xen.org List-Id: xen-devel@lists.xenproject.org On Tue, 2015-01-20 at 11:29 +0000, Wei Liu wrote: > That file is generated by configure. Deleting it leads to rerun > configure after every 'make clean'. Can you move it to distclean then please. With that: Acked-by: Ian Campbell > Signed-off-by: Wei Liu > Cc: Ian Campbell > Cc: Ian Jackson > --- > tools/libxl/Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tools/libxl/Makefile b/tools/libxl/Makefile > index 08fe814..9f36924 100644 > --- a/tools/libxl/Makefile > +++ b/tools/libxl/Makefile > @@ -282,7 +282,7 @@ clean: > $(RM) -f _*.h *.o *.so* *.a $(CLIENTS) $(DEPS) > $(RM) -f _*.c *.pyc _paths.*.tmp _*.api-for-check > $(RM) -f testidl.c.new testidl.c *.api-ok > - $(RM) -f xenlight.pc xenlight.pc.in > + $(RM) -f xenlight.pc > > distclean: clean >