From: Gregor Hoffleit <gregor@hoffleit.de>
Date: Thu, 15 Apr 2010 09:51:47 +0000 (+0200)
Subject: configure: Fix syntax error (spaces in assignment).
X-Git-Tag: 0.2~26
X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=18433e4affa0124b5081fc57f652c832df9e9bb2;p=notmuch.git

configure: Fix syntax error (spaces in assignment).

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.
---

diff --git a/configure b/configure
index eebe0751..7f5ca7d1 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