From patchwork Mon Sep 29 22:46:01 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bryan Hundven X-Patchwork-Id: 394656 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 35AE91400BB for ; Tue, 30 Sep 2014 08:46:14 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id; q=dns; s= default; b=FMoGe0OdkChSHeumu3erhqg1nvIC0fAr2u8bPRnEHx5dNP2IiQW5d vJn0wcO1RDmSU4tCblOGAq+oq+g21JUD9o9nI9ghDOLNLTUhI/F2uj0/5yeI9O6K dn96lw25bWgb1nDYLDTOVCzX/kPBkSWfkftuL9AGz/UcPnKmAwul8U= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id; s=default; bh=++IEib8+YAF4ddUvcAu0UPcsoVQ=; b=EIkE7vd9HPAGTUWE+COYXZV1LsTn UNaCLxBqNZhMFBz4VeL12N7fCcUcd1vi6fSidGRTWaQd0HT0x3fVs6CN09d6IQpm JtnR60fBrWqcV87SV1SQPEgDsvo3AOeb/a0MvIXOzgBqqEZliv0hcHcEAV6mL2VZ IEhcRAqN553XAjE= Received: (qmail 32698 invoked by alias); 29 Sep 2014 22:46:06 -0000 Mailing-List: contact crossgcc-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: crossgcc-owner@sourceware.org Delivered-To: mailing list crossgcc@sourceware.org Received: (qmail 32686 invoked by uid 89); 29 Sep 2014 22:46:05 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-pd0-f176.google.com Received: from mail-pd0-f176.google.com (HELO mail-pd0-f176.google.com) (209.85.192.176) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Mon, 29 Sep 2014 22:46:04 +0000 Received: by mail-pd0-f176.google.com with SMTP id fp1so4933639pdb.35 for ; Mon, 29 Sep 2014 15:46:03 -0700 (PDT) X-Received: by 10.69.31.1 with SMTP id ki1mr21305752pbd.100.1412030763097; Mon, 29 Sep 2014 15:46:03 -0700 (PDT) Received: from localhost.localdomain (c-71-231-80-44.hsd1.wa.comcast.net. [71.231.80.44]) by mx.google.com with ESMTPSA id db2sm13297144pbc.16.2014.09.29.15.46.02 for (version=TLSv1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 29 Sep 2014 15:46:02 -0700 (PDT) From: Bryan Hundven To: "Yann E. MORIN" Cc: crossgcc@sourceware.org, Bryan Hundven Subject: [PATCH] gitignore: Add .DS_Store for Mac OS X Date: Mon, 29 Sep 2014 15:46:01 -0700 Message-Id: <1412030761-40604-1-git-send-email-bryanhundven@gmail.com> X-IsSubscribed: yes From: Bryan Hundven Signed-off-by: Bryan Hundven --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 90b516d..c1af0a1 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,6 @@ build.log .build/ # .. and the legacy location targets/ + +# Mac OS X .DS_Store file +.DS_Store