diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2003-06-14 15:20:28 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2003-06-14 15:20:28 (GMT) |
commit | d141a8c472789b55a7cc4e3585d4de63d44eedff (patch) | |
tree | dbc0c672c73b2d062da888584f9814a5792d77df /configure.in | |
parent | 368de8f17f60316402ce7d498bd9e1fcc759ea33 (diff) | |
download | cpython-d141a8c472789b55a7cc4e3585d4de63d44eedff.zip cpython-d141a8c472789b55a7cc4e3585d4de63d44eedff.tar.gz cpython-d141a8c472789b55a7cc4e3585d4de63d44eedff.tar.bz2 |
Use -R instead of -rpath on Solaris. Fixes #749911.
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 4021728..1bd0f61 100644 --- a/configure.in +++ b/configure.in @@ -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*) |