diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-04-20 17:41:34 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-04-20 21:39:48 -0500 |
commit | 292af048ace2d4b455b2da3a22c784cb05db1d09 (patch) | |
tree | 561ccbeb8e65e1e939f40cd0bbcc5294581b361e /python3 | |
parent | 693d25f8a601ee3738a396fbd8a9b838f19e39c9 (diff) |
python3: --with-system-expat seems to mess up mac build
Change-Id: I2227c5c715bb656878dd97b71d59c149e7e5320a
Diffstat (limited to 'python3')
-rw-r--r-- | python3/ExternalProject_python3.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python3/ExternalProject_python3.mk b/python3/ExternalProject_python3.mk index f030afd71f07..a01e115b15da 100644 --- a/python3/ExternalProject_python3.mk +++ b/python3/ExternalProject_python3.mk @@ -72,9 +72,9 @@ $(call gb_ExternalProject_get_state_target,python3,build) : $(call gb_ExternalProject_run,build,\ ./configure \ $(if $(filter YES,$(CROSS_COMPILING)),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \ - --with-system-expat \ $(if $(filter TRUE,$(ENABLE_VALGRIND)),--with-valgrind) \ --prefix=/python-inst \ + $(if $(filter MACOSX,$(OS)),,--with-system-expat) \ $(if $(filter AIX,$(OS)),--disable-ipv6 --with-threads \ OPT="-g0 -fwrapv -O3 -Wall") \ $(if $(filter WNT-GCC,$(OS)-$(COM)),--with-threads ac_cv_printf_zd_format=no) \ |