From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cooper Subject: Re: [PATCH] tools/python: Further pruning of the defuct xl bindings Date: Wed, 28 Oct 2015 16:01:45 +0000 Message-ID: <5630F169.1040003@citrix.com> References: <1446047743-4111-1-git-send-email-andrew.cooper3@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1446047743-4111-1-git-send-email-andrew.cooper3@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: Xen-devel Cc: Wei Liu , Ian Jackson , Ian Campbell List-Id: xen-devel@lists.xenproject.org On 28/10/15 15:55, Andrew Cooper wrote: > No need to generate xen/lowlevel/xl/_pyxl_types.{h,c}, following c/s > 598e97f "tools/python: remove broken xl binding" In fact, this fixes a build error introduced with 598e97f make -C python all make[2]: Entering directory '/local/xen.git/tools/python' PYTHONPATH=/local/xen.git/tools/python/../../tools/libxl python genwrap.py \ /local/xen.git/tools/python/../../tools/libxl/libxl_types.idl \ xen/lowlevel/xl/_pyxl_types.h \ xen/lowlevel/xl/_pyxl_types.c Parsing /local/xen.git/tools/python/../../tools/libxl/libxl_types.idl Traceback (most recent call last): File "genwrap.py", line 254, in f = open(decls, 'w') IOError: [Errno 2] No such file or directory: 'xen/lowlevel/xl/_pyxl_types.h' Makefile:12: recipe for target 'build' failed which occurs when the directory tools/python/xen/lowlevel/xl doesn't exist. ~Andrew