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 AC8104196F0 for ; Thu, 15 Apr 2010 02:51:49 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.001 X-Spam-Level: X-Spam-Status: No, score=-0.001 tagged_above=-999 required=5 tests=[BAYES_40=-0.001] autolearn=ham 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 Hy05n7zd41r5 for ; Thu, 15 Apr 2010 02:51:48 -0700 (PDT) Received: from sam.mediasupervision.de (sam.mediasupervision.de [80.152.3.104]) by olra.theworths.org (Postfix) with ESMTP id 764BF431FC1 for ; Thu, 15 Apr 2010 02:51:48 -0700 (PDT) Received: from localhost (sam.mediasupervision.de [127.0.0.1]) by sam.mediasupervision.de (Postfix) with ESMTP id 56FED485C67 for ; Thu, 15 Apr 2010 11:51:47 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at sam.mediasupervision.de Received: from sam.mediasupervision.de ([127.0.0.1]) by localhost (sam.mediasupervision.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id r7Wg8xvu-YnR for ; Thu, 15 Apr 2010 11:51:47 +0200 (CEST) Received: by sam.mediasupervision.de (Postfix, from userid 1000) id 3E94C485DE6; Thu, 15 Apr 2010 11:51:47 +0200 (CEST) Content-Type: text/plain; charset=UTF-8 Subject: [PATCH] configure: Fix syntax error (spaces in assignment). From: Gregor Hoffleit To: notmuch Date: Thu, 15 Apr 2010 11:51:47 +0200 Message-Id: <1271325019-sup-2799@sam.mediasupervision.de> User-Agent: Sup/git Content-Transfer-Encoding: 8bit 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: Thu, 15 Apr 2010 09:51:49 -0000 Before and after the assignment operator, no spaces are allowed. I don't know if there are any /bin/sh which allow spaces, but at least in bash, csh and zsh, the former code was no valid assigment. --- configure | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index eebe075..7f5ca7d 100755 --- a/configure +++ b/configure @@ -238,11 +238,11 @@ printf "Checking for Mac OS X (for shared library)... " if [ `uname` = "Darwin" ] ; then printf "Yes.\n" mac_os_x=1 - linker_resolves_library_dependencies = 0 + linker_resolves_library_dependencies=0 else printf "No.\n" mac_os_x=0 - linker_resolves_library_dependencies = 1 + linker_resolves_library_dependencies=1 fi if [ $errors -gt 0 ]; then -- 1.7.0.4