mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 01:14:53 +01:00
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.
This commit is contained in:
parent
2805a243b5
commit
18433e4aff
1 changed files with 2 additions and 2 deletions
4
configure
vendored
4
configure
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue