summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDiogo Franco (Kovensky) <diogomfranco@gmail.com>2013-07-25 12:24:09 -0300
committerDiogo Franco (Kovensky) <diogomfranco@gmail.com>2013-07-25 12:24:09 -0300
commit1df1eb0b613d952bcb23c8e035bfc730fb71bd56 (patch)
treed88d46392a345817e606c28d989707a402be2bd9
parent5586b0293122da39d1d0cb813c7e6eec5d0ffd94 (diff)
downloadmpv-1df1eb0b613d952bcb23c8e035bfc730fb71bd56.tar.bz2
mpv-1df1eb0b613d952bcb23c8e035bfc730fb71bd56.tar.xz
configure: Fix bad variable assignment
Bourne shell hates having spaces before or after the = sign.
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 67df30c033..2e6dc67723 100755
--- a/configure
+++ b/configure
@@ -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'