# HG changeset patch # User Fabian Groffen # Date 1354390041 -3600 # Branch 3.3 # Node ID 5b838becfd3d5275c2202d9713f44b51a5c689dd # Parent 835c5f91343f7d96dcd34e6e9970912e6839bbb5 configure: fix DYLD_LIBRARY_PATH for Darwin Don't quote `pwd`, because RUNSHARED is used in a different directory (./Lib/plat-...) than the current one, where libpython3.3,dylib is being installed. diff -r 835c5f91343f -r 5b838becfd3d configure.ac --- a/configure.ac Sat Dec 01 20:15:52 2012 +0100 +++ b/configure.ac Sat Dec 01 20:27:21 2012 +0100 @@ -940,7 +940,7 @@ if test $enable_shared = "yes"; then Darwin*) LDLIBRARY='libpython$(LDVERSION).dylib' BLDLIBRARY='-L. -lpython$(LDVERSION)' - RUNSHARED='DYLD_LIBRARY_PATH=`pwd`:${DYLD_LIBRARY_PATH}' + RUNSHARED=DYLD_LIBRARY_PATH=`pwd`:${DYLD_LIBRARY_PATH} ;; AIX*) LDLIBRARY='libpython$(LDVERSION).so'