diff options
author | Barry Warsaw <barry@python.org> | 2010-10-18 17:09:07 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2010-10-18 17:09:07 (GMT) |
commit | f040d7de94a057f2c26c8b3d140b33273bfcc595 (patch) | |
tree | 32e2828b339c11ee35de02631de9353e5d4be2dc /configure | |
parent | eebccfb10c423a3f10af8f2bdd0a44cd7e588f37 (diff) | |
download | cpython-f040d7de94a057f2c26c8b3d140b33273bfcc595.zip cpython-f040d7de94a057f2c26c8b3d140b33273bfcc595.tar.gz cpython-f040d7de94a057f2c26c8b3d140b33273bfcc595.tar.bz2 |
One more change for issue 9807, by Matthias Klose.
This adds $ABIFLAGS to the static library, since it should match the shared
library name. Also, include the abiflags in python-config --libs.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 85559 . +# From configure.in Revision: 85656 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.67 for python 3.2. # @@ -4679,7 +4679,7 @@ esac $as_echo_n "checking LIBRARY... " >&6; } if test -z "$LIBRARY" then - LIBRARY='libpython$(VERSION).a' + LIBRARY='libpython$(VERSION)$(ABIFLAGS).a' fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBRARY" >&5 $as_echo "$LIBRARY" >&6; } |