Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
8577e5ae
Commit
8577e5ae
authored
May 07, 2014
by
doko@ubuntu.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Issue #17752: Fix distutils tests when run from the installed location.
parent
024c5eec
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
13 deletions
+15
-13
Lib/distutils/tests/support.py
Lib/distutils/tests/support.py
+1
-1
Misc/NEWS
Misc/NEWS
+2
-0
configure
configure
+6
-6
configure.ac
configure.ac
+6
-6
No files found.
Lib/distutils/tests/support.py
View file @
8577e5ae
...
...
@@ -207,4 +207,4 @@ def fixup_build_ext(cmd):
cmd
.
library_dirs
=
[]
else
:
name
,
equals
,
value
=
runshared
.
partition
(
'='
)
cmd
.
library_dirs
=
value
.
split
(
os
.
pathsep
)
cmd
.
library_dirs
=
[
d
for
d
in
value
.
split
(
os
.
pathsep
)
if
d
]
Misc/NEWS
View file @
8577e5ae
...
...
@@ -38,6 +38,8 @@ Library
Tests
-----
- Issue #17752: Fix distutils tests when run from the installed location.
- Issue #20946: Correct alignment assumptions of some ctypes tests.
- Issue #20939: Fix test_geturl failure in test_urllibnet due to
...
...
configure
View file @
8577e5ae
...
...
@@ -5576,7 +5576,7 @@ $as_echo_n "checking LDLIBRARY... " >&6; }
if
test
"
$enable_framework
"
then
LDLIBRARY
=
'$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
RUNSHARED
=
DYLD_FRAMEWORK_PATH
=
"
`
pwd
`
:
$DYLD_FRAMEWORK_PATH
"
RUNSHARED
=
DYLD_FRAMEWORK_PATH
=
`
pwd
`
${
DYLD_FRAMEWORK_PATH
:+:
${
DYLD_FRAMEWORK_PATH
}}
BLDLIBRARY
=
''
else
BLDLIBRARY
=
'$(LDLIBRARY)'
...
...
@@ -5595,7 +5595,7 @@ $as_echo "#define Py_ENABLE_SHARED 1" >>confdefs.h
SunOS
*
)
LDLIBRARY
=
'libpython$(LDVERSION).so'
BLDLIBRARY
=
'-Wl,-R,$(LIBDIR) -L. -lpython$(LDVERSION)'
RUNSHARED
=
LD_LIBRARY_PATH
=
`
pwd
`
:
${
LD_LIBRARY_PATH
}
RUNSHARED
=
LD_LIBRARY_PATH
=
`
pwd
`
${
LD_LIBRARY_PATH
:+:
${
LD_LIBRARY_PATH
}
}
INSTSONAME
=
"
$LDLIBRARY
"
.
$SOVERSION
if
test
"
$with_pydebug
"
!=
yes
then
...
...
@@ -5605,7 +5605,7 @@ $as_echo "#define Py_ENABLE_SHARED 1" >>confdefs.h
Linux
*
|
GNU
*
|
NetBSD
*
|
FreeBSD
*
|
DragonFly
*
|
OpenBSD
*
)
LDLIBRARY
=
'libpython$(LDVERSION).so'
BLDLIBRARY
=
'-L. -lpython$(LDVERSION)'
RUNSHARED
=
LD_LIBRARY_PATH
=
`
pwd
`
:
${
LD_LIBRARY_PATH
}
RUNSHARED
=
LD_LIBRARY_PATH
=
`
pwd
`
${
LD_LIBRARY_PATH
:+:
${
LD_LIBRARY_PATH
}
}
case
$ac_sys_system
in
FreeBSD
*
)
SOVERSION
=
`
echo
$SOVERSION
|cut
-d
"."
-f
1
`
...
...
@@ -5627,16 +5627,16 @@ $as_echo "#define Py_ENABLE_SHARED 1" >>confdefs.h
;;
esac
BLDLIBRARY
=
'-Wl,+b,$(LIBDIR) -L. -lpython$(LDVERSION)'
RUNSHARED
=
SHLIB_PATH
=
`
pwd
`
:
${
SHLIB_PATH
}
RUNSHARED
=
SHLIB_PATH
=
`
pwd
`
${
SHLIB_PATH
:+:
${
SHLIB_PATH
}
}
;;
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:+:${DYLD_LIBRARY_PATH}
}'
;;
AIX
*
)
LDLIBRARY
=
'libpython$(LDVERSION).so'
RUNSHARED
=
LIBPATH
=
`
pwd
`
:
${
LIBPATH
}
RUNSHARED
=
LIBPATH
=
`
pwd
`
${
LIBPATH
:+:
${
LIBPATH
}
}
;;
esac
...
...
configure.ac
View file @
8577e5ae
...
...
@@ -909,7 +909,7 @@ AC_MSG_CHECKING(LDLIBRARY)
if test "$enable_framework"
then
LDLIBRARY='$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
RUNSHARED=DYLD_FRAMEWORK_PATH=
"`pwd`:$DYLD_FRAMEWORK_PATH"
RUNSHARED=DYLD_FRAMEWORK_PATH=
`pwd`${DYLD_FRAMEWORK_PATH:+:${DYLD_FRAMEWORK_PATH}}
BLDLIBRARY=''
else
BLDLIBRARY='$(LDLIBRARY)'
...
...
@@ -926,7 +926,7 @@ if test $enable_shared = "yes"; then
SunOS*)
LDLIBRARY='libpython$(LDVERSION).so'
BLDLIBRARY='-Wl,-R,$(LIBDIR) -L. -lpython$(LDVERSION)'
RUNSHARED=LD_LIBRARY_PATH=`pwd`
:${LD_LIBRARY_PATH
}
RUNSHARED=LD_LIBRARY_PATH=`pwd`
${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}
}
INSTSONAME="$LDLIBRARY".$SOVERSION
if test "$with_pydebug" != yes
then
...
...
@@ -936,7 +936,7 @@ if test $enable_shared = "yes"; then
Linux*|GNU*|NetBSD*|FreeBSD*|DragonFly*|OpenBSD*)
LDLIBRARY='libpython$(LDVERSION).so'
BLDLIBRARY='-L. -lpython$(LDVERSION)'
RUNSHARED=LD_LIBRARY_PATH=`pwd`
:${LD_LIBRARY_PATH
}
RUNSHARED=LD_LIBRARY_PATH=`pwd`
${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}
}
case $ac_sys_system in
FreeBSD*)
SOVERSION=`echo $SOVERSION|cut -d "." -f 1`
...
...
@@ -958,16 +958,16 @@ if test $enable_shared = "yes"; then
;;
esac
BLDLIBRARY='-Wl,+b,$(LIBDIR) -L. -lpython$(LDVERSION)'
RUNSHARED=SHLIB_PATH=`pwd`
:${SHLIB_PATH
}
RUNSHARED=SHLIB_PATH=`pwd`
${SHLIB_PATH:+:${SHLIB_PATH}
}
;;
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:+:${DYLD_LIBRARY_PATH}
}'
;;
AIX*)
LDLIBRARY='libpython$(LDVERSION).so'
RUNSHARED=LIBPATH=`pwd`
:${LIBPATH
}
RUNSHARED=LIBPATH=`pwd`
${LIBPATH:+:${LIBPATH}
}
;;
esac
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment