diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2001-09-05 08:36:52 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2001-09-05 08:36:52 (GMT) |
commit | 703ad705c34deba4b559fd9e62c380dcbdc6861e (patch) | |
tree | a75b0dc628d9d6a23fbfcc3d8130bbe11f99330b /configure | |
parent | a5f8bb57e0767a1022c89d48cd16d84cdfc1b12c (diff) | |
download | cpython-703ad705c34deba4b559fd9e62c380dcbdc6861e.zip cpython-703ad705c34deba4b559fd9e62c380dcbdc6861e.tar.gz cpython-703ad705c34deba4b559fd9e62c380dcbdc6861e.tar.bz2 |
Use -fPIC instead of -fpic for gcc on HP/UX. Fixes bug #433234.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ #! /bin/sh -# From configure.in Revision: 1.249 +# From configure.in Revision: 1.250 # Guess values for system-dependent variables and create Makefiles. # Generated automatically using autoconf version 2.13 @@ -3087,7 +3087,7 @@ then then CCSHARED="-fPIC"; fi;; hp*|HP*) if test "$GCC" = yes; - then CCSHARED="-fpic"; + then CCSHARED="-fPIC"; else CCSHARED="+z"; fi;; Linux*) CCSHARED="-fPIC";; |