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: 138963 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 3F4671007D1 for ; Thu, 2 Feb 2012 05:51:01 +1100 (EST) Received: from localhost ([::1]:37202 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RsfGk-0001km-8s for incoming@patchwork.ozlabs.org; Wed, 01 Feb 2012 13:50:58 -0500 Received: from eggs.gnu.org ([140.186.70.92]:40920) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RsfGZ-0001kh-T8 for qemu-devel@nongnu.org; Wed, 01 Feb 2012 13:50:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RsfGY-0002Ze-KA for qemu-devel@nongnu.org; Wed, 01 Feb 2012 13:50:47 -0500 Received: from mnementh.archaic.org.uk ([81.2.115.146]:46988) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RsfGY-0002ZW-CY; Wed, 01 Feb 2012 13:50:46 -0500 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 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 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 81.2.115.146 Cc: qemu-trivial@nongnu.org, patches@linaro.org Subject: [Qemu-devel] [PATCH] Makefile: Remove linux-headers/asm symlink on distclean X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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 ; \