From patchwork Wed Feb 1 18:50:42 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 6509 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id A783323ECA for ; Wed, 1 Feb 2012 18:50:48 +0000 (UTC) Received: from mail-bk0-f52.google.com (mail-bk0-f52.google.com [209.85.214.52]) by fiordland.canonical.com (Postfix) with ESMTP id 8D8DDA1845D for ; Wed, 1 Feb 2012 18:50:48 +0000 (UTC) Received: by bkar19 with SMTP id r19so1798970bka.11 for ; Wed, 01 Feb 2012 10:50:48 -0800 (PST) Received: by 10.205.121.2 with SMTP id ga2mr13065145bkc.38.1328122247855; Wed, 01 Feb 2012 10:50:47 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.204.130.220 with SMTP id u28cs218656bks; Wed, 1 Feb 2012 10:50:47 -0800 (PST) Received: by 10.180.106.130 with SMTP id gu2mr43553077wib.6.1328122245308; Wed, 01 Feb 2012 10:50:45 -0800 (PST) Received: from mnementh.archaic.org.uk (mnementh.archaic.org.uk. [81.2.115.146]) by mx.google.com with ESMTPS id w30si18606035weq.68.2012.02.01.10.50.44 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 01 Feb 2012 10:50:45 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 81.2.115.146 as permitted sender) client-ip=81.2.115.146; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 81.2.115.146 as permitted sender) smtp.mail=pm215@archaic.org.uk Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.72) (envelope-from ) id 1RsfGU-0004kT-Pg; Wed, 01 Feb 2012 18:50:42 +0000 From: Peter Maydell To: qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org, patches@linaro.org Subject: [PATCH] Makefile: Remove linux-headers/asm symlink on distclean Date: Wed, 1 Feb 2012 18:50:42 +0000 Message-Id: <1328122242-18230-1-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.2.5 configure creates a linux-headers/asm symlink. Remove this when doing a distclean. Signed-off-by: Peter Maydell --- Makefile | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index d172cbf..2560b59 100644 --- a/Makefile +++ b/Makefile @@ -233,6 +233,7 @@ distclean: clean rm -f qemu-doc.log qemu-doc.pdf qemu-doc.pg qemu-doc.toc qemu-doc.tp rm -f qemu-doc.vr rm -f config.log + rm -f linux-headers/asm 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) $(QEMULIBS); do \ rm -rf $$d || exit 1 ; \