Skip to content

Commit

Permalink
[ios] fixed, configure is bash so you need to quote strings
Browse files Browse the repository at this point in the history
  • Loading branch information
davilla committed Apr 13, 2011
1 parent bbea662 commit fb23c8f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions configure.in
Expand Up @@ -339,10 +339,10 @@ case $host in
ARCHTYPE=$HOSTTYPE
AC_SUBST([ARCHTYPE])
AC_SUBST(ARCH_DEFINES, "-D_ARMEL")
PYTHON_VERSION=2.6
PYTHON_CPPFLAGS=-I${prefix}/include/python2.6
PYTHON_LDFLAGS=-L${prefix}/lib -lpython2.6
PYTHON_SITE_PKG=${prefix}/lib/python2.6/site-packages
PYTHON_VERSION="2.6"
PYTHON_LDFLAGS="-L${prefix}/lib -lpython2.6"
PYTHON_CPPFLAGS="-I${prefix}/include/python2.6"
PYTHON_SITE_PKG="${prefix}/lib/python2.6/site-packages"
PYTHON_NOVERSIONCHECK="no-check"
;;
i386-apple-darwin*)
Expand Down

0 comments on commit fb23c8f

Please sign in to comment.