mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00
Use -R instead of -rpath on Solaris. Fixes #749911.
This commit is contained in:
parent
368de8f17f
commit
d141a8c472
2 changed files with 3 additions and 3 deletions
4
configure
vendored
4
configure
vendored
|
@ -1,5 +1,5 @@
|
|||
#! /bin/sh
|
||||
# From configure.in Revision: 1.415 .
|
||||
# From configure.in Revision: 1.416 .
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.53 for python 2.3.
|
||||
#
|
||||
|
@ -3269,7 +3269,7 @@ _ACEOF
|
|||
;;
|
||||
SunOS*)
|
||||
LDLIBRARY='libpython$(VERSION).so'
|
||||
BLDLIBRARY='-Wl,-rpath,$(LIBDIR) -L. -lpython$(VERSION)'
|
||||
BLDLIBRARY='-Wl,-R,$(LIBDIR) -L. -lpython$(VERSION)'
|
||||
RUNSHARED=LD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH
|
||||
;;
|
||||
Linux*|GNU*|NetBSD*)
|
||||
|
|
|
@ -501,7 +501,7 @@ if test $enable_shared = "yes"; then
|
|||
;;
|
||||
SunOS*)
|
||||
LDLIBRARY='libpython$(VERSION).so'
|
||||
BLDLIBRARY='-Wl,-rpath,$(LIBDIR) -L. -lpython$(VERSION)'
|
||||
BLDLIBRARY='-Wl,-R,$(LIBDIR) -L. -lpython$(VERSION)'
|
||||
RUNSHARED=LD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH
|
||||
;;
|
||||
Linux*|GNU*|NetBSD*)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue