From mboxrd@z Thu Jan 1 00:00:00 1970 From: Samuel Thibault Subject: [PATCH] Re: distclean failure Date: Fri, 1 Aug 2008 15:18:20 +0100 Message-ID: <20080801141820.GU4553@implementation.uk.xensource.com> References: <200808011614.56245.Christoph.Egger@amd.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Return-path: Content-Disposition: inline In-Reply-To: <200808011614.56245.Christoph.Egger@amd.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: Christoph Egger Cc: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org Christoph Egger, le Fri 01 Aug 2008 16:14:56 +0200, a =E9crit : > gmake: *** libxc: No such file or directory. Stop. Ah, right. Samuel stubdom: fix clean target after distclean Signed-off-by: Samuel Thibault diff -r 3dedb6209991 stubdom/Makefile --- a/stubdom/Makefile Fri Aug 01 12:18:02 2008 +0100 +++ b/stubdom/Makefile Fri Aug 01 15:17:46 2008 +0100 @@ -321,8 +321,8 @@ clean: $(MAKE) -C caml clean $(MAKE) -C c clean $(MAKE) -C grub clean - $(MAKE) -C libxc clean - $(MAKE) -C ioemu clean + [ ! -d libxc ] || $(MAKE) -C libxc clean + [ ! -d ioemu ] || $(MAKE) -C ioemu clean =20 # clean the cross-compilation result .PHONY: crossclean