diff options
author | Matthias Klose <doko@ubuntu.com> | 2007-10-25 06:37:24 (GMT) |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2007-10-25 06:37:24 (GMT) |
commit | 6e183f8f440af90dd3470efc4193fd868d3b1537 (patch) | |
tree | 22788c29a8dd7a8f20d23f9a62d36f4989b327e2 /configure.in | |
parent | a45c4873fc190859eefc821bed44f26620c6f99e (diff) | |
download | cpython-6e183f8f440af90dd3470efc4193fd868d3b1537.zip cpython-6e183f8f440af90dd3470efc4193fd868d3b1537.tar.gz cpython-6e183f8f440af90dd3470efc4193fd868d3b1537.tar.bz2 |
- Build using system ffi library on arm*-linux*, pass --with-system-ffi to CONFIG_ARGS
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 2c5a85f..eabc69f 100644 --- a/configure.in +++ b/configure.in @@ -1755,7 +1755,7 @@ AC_ARG_WITH(system_ffi, if test -z "$with_system_ffi" && test "$ac_cv_header_ffi_h" = yes; then case "$ac_sys_system/`uname -m`" in - Linux/arm*) with_system_ffi="yes";; + Linux/arm*) with_system_ffi="yes"; CONFIG_ARGS="$CONFIG_ARGS --with-system-ffi";; *) with_system_ffi="no" esac fi |