Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 4B74E431FB6 for ; Fri, 1 Nov 2013 07:22:25 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0 X-Spam-Level: X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id IuSEBvED4nWO for ; Fri, 1 Nov 2013 07:22:16 -0700 (PDT) Received: from mail-gw3.nixu.fi (mail-gw3.nixu.fi [193.209.237.7]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 7DD06431FAE for ; Fri, 1 Nov 2013 07:22:16 -0700 (PDT) Received: from pps.filterd (mail-gw3 [127.0.0.1]) by mail-gw3.nixu.fi (8.14.4/8.14.4) with SMTP id rA1EK8pI022729; Fri, 1 Nov 2013 16:22:06 +0200 Received: from exch01.nixu.dom ([194.197.118.126]) by mail-gw3.nixu.fi with ESMTP id 1fu0vn8tab-1 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NOT); Fri, 01 Nov 2013 16:22:06 +0200 Received: from shell.nixu.fi (194.197.118.243) by exch01.nixu.fi (194.197.118.126) with Microsoft SMTP Server id 14.2.318.4; Fri, 1 Nov 2013 16:22:06 +0200 From: Tomi Ollila To: Michael Phillips Subject: Re: Build broken on OS X 10.9 In-Reply-To: References: User-Agent: Notmuch/0.16 (http://notmuchmail.org) Emacs/23.4.1 (x86_64-pc-linux-gnu) X-Face: HhBM'cA~ MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Cc: notmuch@notmuchmail.org X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Nov 2013 14:22:25 -0000 On Fri, Nov 01 2013, Michael Phillips wrote: > On Fri, Nov 1, 2013 at 1:44 AM, Tomi Ollila wrote: >> Hmm, it seems the rule doing that says @mkdir -p .deps/$(@D) ... >> >> does `mkdir -p xyzdir/.` fail in OS X 10.9 (Mavericks) ? > > $ mkdir -p xyzdir/. > > mkdir: xyzdir/.: No such file or directory > > Good catch! So mkdir changed between 10.8 and 10.9. Quick(&dirty?) solution would be to change the in quetsion recipes to format: @-mkdir -p .deps/$(@D) I.e. add dash (-) to make Make ignore failure there. > Michael Tomi