From mboxrd@z Thu Jan 1 00:00:00 1970 From: Juergen Gross Subject: Re: Failure on "make clean" Date: Tue, 25 Nov 2014 10:24:42 +0100 Message-ID: <54744ADA.10504@suse.com> References: <5474335D.8010007@suse.com> <54745381020000780004A94C@suse.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; Format="flowed" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta14.messagelabs.com ([193.109.254.103]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1XtCMX-0006d3-4R for xen-devel@lists.xenproject.org; Tue, 25 Nov 2014 09:24:45 +0000 Received: from relay2.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 17157ABE2 for ; Tue, 25 Nov 2014 09:24:42 +0000 (UTC) In-Reply-To: <54745381020000780004A94C@suse.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: Jan Beulich Cc: xen-devel List-Id: xen-devel@lists.xenproject.org On 11/25/2014 10:01 AM, Jan Beulich wrote: >>>> On 25.11.14 at 08:44, wrote: >> Hi, >> >> make clean in xen-unstable is failing: >> >> make[2]: Entering directory '/home/gross/xen/tools' >> set -e; if test -d qemu-xen-traditional-dir/.; then \ >> make -C qemu-xen-traditional-dir clean; \ >> fi >> make[3]: Entering directory >> '/home/gross/xen/tools/qemu-xen-traditional-dir-remote' >> Makefile:3: config-host.mak: No such file or directory > > SRC_PATH gets defined there. This file missing makes me wonder > whether you ran "make clean" without a prior "make". If so, > perhaps the test in tools/Makefile should be altered: > > subdir-clean-qemu-xen-traditional-dir: > set -e; if test -e qemu-xen-traditional-dir/config-host.mak; then \ > $(MAKE) -C qemu-xen-traditional-dir clean; \ > fi > > (possibly in a similar way for subdir-clean-qemu-xen-dir), albeit that > may end up leaving an unclean tree when having interrupted qemu's > configure process (not sure in which order it creates files). I called "make subtree-force-update" before "make clean". This wipes out tools/qemu-xen-traditional-dir IMHO. Juergen