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
008af85d
Commit
008af85d
authored
Mar 30, 2009
by
Ronald Oussoren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for issue 13095
parent
354bb5ca
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
Doc/library/os.path.rst
Doc/library/os.path.rst
+1
-1
Mac/BuildScript/build-installer.py
Mac/BuildScript/build-installer.py
+6
-0
No files found.
Doc/library/os.path.rst
View file @
008af85d
...
...
@@ -190,7 +190,7 @@ write files see :func:`open`, and for accessing the filesystem see the
.. function:: normcase(path)
Normalize the case of a pathname. On Unix, this returns the path unchanged; on
Normalize the case of a pathname. On Unix
and MacOSX
, this returns the path unchanged; on
case-insensitive filesystems, it converts the path to lowercase. On Windows, it
also converts forward slashes to backward slashes.
...
...
Mac/BuildScript/build-installer.py
View file @
008af85d
...
...
@@ -649,6 +649,11 @@ def buildPython():
# several paths.
version
=
getVersion
()
# Since the extra libs are not in their installed framework location
# during the build, augment the library path so that the interpreter
# will find them during its extension import sanity checks.
os
.
environ
[
'DYLD_LIBRARY_PATH'
]
=
os
.
path
.
join
(
WORKDIR
,
'libraries'
,
'usr'
,
'local'
,
'lib'
)
print
"Running configure..."
runCommand
(
"%s -C --enable-framework --enable-universalsdk=%s "
"--with-universal-archs=%s "
...
...
@@ -670,6 +675,7 @@ def buildPython():
runCommand
(
"make frameworkinstallextras DESTDIR=%s"
%
(
shellQuote
(
rootDir
)))
del
os
.
environ
[
'DYLD_LIBRARY_PATH'
]
print
"Copying required shared libraries"
if
os
.
path
.
exists
(
os
.
path
.
join
(
WORKDIR
,
'libraries'
,
'Library'
)):
runCommand
(
"mv %s/* %s"
%
(
...
...
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