configure: Fix bad variable assignment

Bourne shell hates having spaces before or after the = sign.
This commit is contained in:
Diogo Franco (Kovensky) 2013-07-25 12:24:09 -03:00
parent 5586b02931
commit 1df1eb0b61
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -1426,7 +1426,7 @@ if test "$_terminfo" = yes ; then
test $_ld_tmp && res_comment="using $_ld_tmp"
if test "$_termcap" = auto ; then
_termcap = yes # terminfo provides termcap
_termcap=yes # terminfo provides termcap
fi
else
def_terminfo='#undef HAVE_TERMINFO'