diff options
author | Matthias Klose <doko@ubuntu.com> | 2007-09-04 20:46:02 (GMT) |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2007-09-04 20:46:02 (GMT) |
commit | 38336406ebdbe5d524f29483b3c2c3d47d1d76af (patch) | |
tree | 84c00a7a89a1f1f27dddd37035593b0ae665730f /Modules | |
parent | 4f2ba5529b819b977483806c2cd3151f27468d4b (diff) | |
download | cpython-38336406ebdbe5d524f29483b3c2c3d47d1d76af.zip cpython-38336406ebdbe5d524f29483b3c2c3d47d1d76af.tar.gz cpython-38336406ebdbe5d524f29483b3c2c3d47d1d76af.tar.bz2 |
- Fix libffi configure for hppa*-*-linux* | parisc*-*-linux*.
Diffstat (limited to 'Modules')
-rwxr-xr-x | Modules/_ctypes/libffi/configure | 2 | ||||
-rw-r--r-- | Modules/_ctypes/libffi/configure.ac | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_ctypes/libffi/configure b/Modules/_ctypes/libffi/configure index f65669e..bc7e474 100755 --- a/Modules/_ctypes/libffi/configure +++ b/Modules/_ctypes/libffi/configure @@ -3533,7 +3533,7 @@ x86_64-*-linux* | x86_64-*-freebsd* | x86_64-*-kfreebsd*-gnu) TARGET=X86_64; TAR sh-*-linux* | sh[34]*-*-linux*) TARGET=SH; TARGETDIR=sh;; sh-*-rtems*) TARGET=SH; TARGETDIR=sh;; sh64-*-linux* | sh5*-*-linux*) TARGET=SH64; TARGETDIR=sh64;; -hppa-*-linux* | parisc-*-linux*) TARGET=PA; TARGETDIR=pa;; +hppa*-*-linux* | parisc*-*-linux*) TARGET=PA; TARGETDIR=pa;; esac if test $TARGETDIR = unknown; then diff --git a/Modules/_ctypes/libffi/configure.ac b/Modules/_ctypes/libffi/configure.ac index 8870fcb..10b04dc 100644 --- a/Modules/_ctypes/libffi/configure.ac +++ b/Modules/_ctypes/libffi/configure.ac @@ -71,7 +71,7 @@ x86_64-*-linux* | x86_64-*-freebsd* | x86_64-*-kfreebsd*-gnu) TARGET=X86_64; TAR sh-*-linux* | sh[[34]]*-*-linux*) TARGET=SH; TARGETDIR=sh;; sh-*-rtems*) TARGET=SH; TARGETDIR=sh;; sh64-*-linux* | sh5*-*-linux*) TARGET=SH64; TARGETDIR=sh64;; -hppa-*-linux* | parisc-*-linux*) TARGET=PA; TARGETDIR=pa;; +hppa*-*-linux* | parisc*-*-linux*) TARGET=PA; TARGETDIR=pa;; esac if test $TARGETDIR = unknown; then |