Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
don't include future for python3 (followup 2b55d89)
  • Loading branch information
jef-n committed Mar 25, 2016
1 parent 2b55d89 commit f129540
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/ext-libs/CMakeLists.txt
Expand Up @@ -37,7 +37,9 @@ FOREACH(pkg httplib2 jinja2 markupsafe owslib pygments dateutil pytz yaml nose2)
EXT_PYLIB(${pkg} .)
ENDFOREACH(pkg)

EXT_PYLIB(future ..)
IF(NOT ENABLE_PYTHON3)
EXT_PYLIB(future ..)
ENDIF(NOT ENABLE_PYTHON3)

SET (WITH_INTERNAL_SIX TRUE CACHE BOOL "Determines whether python six should be included")
IF(WITH_INTERNAL_SIX)
Expand Down

0 comments on commit f129540

Please sign in to comment.