From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=56228 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OWjdK-0004J3-42 for qemu-devel@nongnu.org; Thu, 08 Jul 2010 01:26:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OWjdJ-0003Fx-0h for qemu-devel@nongnu.org; Thu, 08 Jul 2010 01:26:50 -0400 Received: from fgwmail6.fujitsu.co.jp ([192.51.44.36]:36322) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OWjdI-0003Fd-Fp for qemu-devel@nongnu.org; Thu, 08 Jul 2010 01:26:48 -0400 Received: from m3.gw.fujitsu.co.jp ([10.0.50.73]) by fgwmail6.fujitsu.co.jp (Fujitsu Gateway) with ESMTP id o685Qlso013763 for (envelope-from seto.hidetoshi@jp.fujitsu.com); Thu, 8 Jul 2010 14:26:47 +0900 Received: from smail (m3 [127.0.0.1]) by outgoing.m3.gw.fujitsu.co.jp (Postfix) with ESMTP id 8987245DE4D for ; Thu, 8 Jul 2010 14:26:46 +0900 (JST) Received: from s3.gw.fujitsu.co.jp (s3.gw.fujitsu.co.jp [10.0.50.93]) by m3.gw.fujitsu.co.jp (Postfix) with ESMTP id 0A1C245DE50 for ; Thu, 8 Jul 2010 14:26:46 +0900 (JST) Received: from s3.gw.fujitsu.co.jp (localhost.localdomain [127.0.0.1]) by s3.gw.fujitsu.co.jp (Postfix) with ESMTP id BCF73E18001 for ; Thu, 8 Jul 2010 14:26:44 +0900 (JST) Received: from ml13.s.css.fujitsu.com (ml13.s.css.fujitsu.com [10.249.87.103]) by s3.gw.fujitsu.co.jp (Postfix) with ESMTP id 766971DB8037 for ; Thu, 8 Jul 2010 14:26:41 +0900 (JST) Message-ID: <4C35617A.2000504@jp.fujitsu.com> Date: Thu, 08 Jul 2010 14:26:18 +0900 From: Hidetoshi Seto MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-2022-JP Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH] Makefile: Not every shell support {} List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Blue Swirl So interpret it by hand. Signed-off-by: Hidetoshi Seto --- Makefile | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index 7b82a33..6fc1b2c 100644 --- a/Makefile +++ b/Makefile @@ -171,7 +171,8 @@ distclean: clean rm -f qemu-options.def rm -f config-all-devices.mak rm -f roms/seabios/config.mak roms/vgabios/config.mak - rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pdf,pg,toc,tp,vr} + rm -f qemu-doc.info qemu-doc.aux qemu-doc.cp qemu-doc.dvi qemu-doc.fn qemu-doc.info qemu-doc.ky qemu-doc.log qemu-doc.pdf qemu-doc.pg qemu-doc.toc qemu-doc.tp qemu-doc.vr + rm -f qemu-tech.info qemu-tech.aux qemu-tech.cp qemu-tech.dvi qemu-tech.fn qemu-tech.info qemu-tech.ky qemu-tech.log qemu-tech.pdf qemu-tech.pg qemu-tech.toc qemu-tech.tp qemu-tech.vr for d in $(TARGET_DIRS) libhw32 libhw64 libuser libdis libdis-user; do \ rm -rf $$d || exit 1 ; \ done -- 1.7.1.1