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:
Gregor Hoffleit 2010-04-15 11:51:47 +02:00 committed by Carl Worth
parent 2805a243b5
commit 18433e4aff

4
configure vendored
View file

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