From patchwork Thu Jun 4 08:49:08 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 3911 X-Patchwork-Delegate: kieran.bingham@ideasonboard.com Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 6EC44603C8 for ; Thu, 4 Jun 2020 10:49:13 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="bhO4iAUA"; dkim-atps=neutral Received: from Q.local (cpc89242-aztw30-2-0-cust488.18-1.cable.virginm.net [86.31.129.233]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 0265F29B; Thu, 4 Jun 2020 10:49:11 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1591260552; bh=fUNgnwNQigSfjW176GFbNBe9nlXmR9/NOQB3cs8Vs/M=; h=From:To:Cc:Subject:Date:From; b=bhO4iAUA6+l5R50RaTLtGC7Jiw116i2x8xdAogLLCV5trkD+XNVc9+5mEjVTgCj3S NHMZWGzl0xeGFsaRyLBB+/XGFhOEQvgryMU6gNFbrCLFJiNPwDMquB3+BG7/qSTQ3X ihCuZQMPNFhUpTe7NF+dWQr54GFvKOIb2gXSXO5U= From: Kieran Bingham To: libcamera devel Date: Thu, 4 Jun 2020 09:49:08 +0100 Message-Id: <20200604084908.3776979-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] gitignore: Ignore all build directories X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Jun 2020 08:49:13 -0000 It can be common to have multiple build directories with different configurations. Ignore them all. Signed-off-by: Kieran Bingham --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f989dee3bcb0..aecf971d30aa 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ __pycache__/ -build/ +*build*/ patches/ *.patch *.pyc