From patchwork Sat Sep 14 15:05:09 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Monjalon X-Patchwork-Id: 59270 X-Patchwork-Delegate: david.marchand@redhat.com Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C71911BEC4; Sat, 14 Sep 2019 17:05:17 +0200 (CEST) Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id E135D1BEB9 for ; Sat, 14 Sep 2019 17:05:16 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 8C7FE20D98; Sat, 14 Sep 2019 11:05:13 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Sat, 14 Sep 2019 11:05:13 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:subject:date:message-id:mime-version :content-transfer-encoding; s=mesmtp; bh=ZJUP9dI/Q1qgvegj/mwSpdK lyjJIRaYpeScQ/Iota5g=; b=By2igPiSj8rXGdazFT/VQj+KLyk62yQC6X6Pteb 5RoJnKrvmWohEqPvE5xZeDcVkNpciLq5uMfDmig2rmKkC9kvCsYL+g6YZACY84vF veneiXiTPfG+hI8IEFUczDQfNKsxgvGCrfkOG/aKKtmDilFKglW4sgz7RJqKfOnJ Sixo= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=content-transfer-encoding:date:from :message-id:mime-version:subject:to:x-me-proxy:x-me-proxy :x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=ZJUP9dI/Q1qgvegj/ mwSpdKlyjJIRaYpeScQ/Iota5g=; b=A9Pd+2MjfERRFCSE4es12FMGjt4exQ3Nf 6w7+hFqX2Y+5FdQdpqfD/+HH7jONYTEPVFw5BAl5IzZEpY8T0P3g1fPb/KhDqFBg umHU9emWHuA2QEcMkk3aqVsdlTR7WC81MAF7KCcUPu5ScU4b50XnocFeXZ28gvRv m7gQWJ4tfWVaAQ6KuUvMyWkUV6SBOyvBfBfJ9ta3aWDlriM3kSj/BCamF+fOxT51 afwgrkxK9qpqQf005Qv0yIKSFlSMAnjr77RyUHDs7+tP7REMo3I3c0D6bzgApErL h2+gOYyyQD0IoLm7eHc/TylYyX1LmvW3GFjrv4yQlxn2MR9k+aD2w== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedufedrtdelgdekhecutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecunecujfgurhephffvufffkffoggfgsedtkeertdertd dtnecuhfhrohhmpefvhhhomhgrshcuofhonhhjrghlohhnuceothhhohhmrghssehmohhn jhgrlhhonhdrnhgvtheqnecukfhppeejjedrudefgedrvddtfedrudekgeenucfrrghrrg hmpehmrghilhhfrhhomhepthhhohhmrghssehmohhnjhgrlhhonhdrnhgvthenucevlhhu shhtvghrufhiiigvpedt X-ME-Proxy: Received: from xps.monjalon.net (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id BD56E80059 for ; Sat, 14 Sep 2019 11:05:12 -0400 (EDT) From: Thomas Monjalon To: dev@dpdk.org Date: Sat, 14 Sep 2019 17:05:09 +0200 Message-Id: <20190914150509.16549-1-thomas@monjalon.net> X-Mailer: git-send-email 2.23.0 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH] git: ignore more build directories X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Build directories commonly have compiler in their names. In order to filter build directories not starting with "build-" (common with make), patterns for gcc and clang are added to .gitignore. Signed-off-by: Thomas Monjalon Acked-by: David Marchand --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 5eda2c31e..9741ba076 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,6 @@ TAGS # ignore default build directory, and directories from test-meson-builds.sh build build-* +# ignore other build directory patterns +*-gcc* +*-clang*