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
1345d201
Commit
1345d201
authored
Apr 13, 2015
by
doko@ubuntu.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Use PLATDIR for the platform directory everywhere (refactoring only)
parent
7f825226
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
2 deletions
+9
-2
Makefile.pre.in
Makefile.pre.in
+1
-1
Modules/Setup.dist
Modules/Setup.dist
+1
-1
configure
configure
+4
-0
configure.ac
configure.ac
+3
-0
No files found.
Makefile.pre.in
View file @
1345d201
...
...
@@ -1123,7 +1123,7 @@ maninstall: altmaninstall
(
cd
$(DESTDIR)$(MANDIR)
/man1
;
$(LN)
-s
python
$(VERSION)
.1 python3.1
)
# Install the library
PLATDIR
=
plat-
$(MACHDEP)
PLATDIR
=
@PLATDIR@
EXTRAPLATDIR
=
@EXTRAPLATDIR@
MACHDEPS
=
$(PLATDIR)
$(EXTRAPLATDIR)
XMLLIBSUBDIRS
=
xml xml/dom xml/etree xml/parsers xml/sax
...
...
Modules/Setup.dist
View file @
1345d201
...
...
@@ -91,7 +91,7 @@ SITEPATH=
TESTPATH
=
# Path components for machine- or system-dependent modules and shared libraries
MACHDEPPATH
=
:
plat-
$(MACHDEP
)
MACHDEPPATH
=
:
$(PLATDIR
)
EXTRAMACHDEPPATH
=
COREPYTHONPATH
=
$(DESTPATH)$(SITEPATH)$(TESTPATH)$(MACHDEPPATH)$(EXTRAMACHDEPPATH)
...
...
configure
View file @
1345d201
...
...
@@ -711,6 +711,7 @@ CFLAGS
CC
EXPORT_MACOSX_DEPLOYMENT_TARGET
CONFIGURE_MACOSX_DEPLOYMENT_TARGET
PLATDIR
SGI_ABI
_PYTHON_HOST_PLATFORM
MACHDEP
...
...
@@ -3493,6 +3494,9 @@ fi
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result:
$MACHDEP
"
>
&5
$as_echo
"
$MACHDEP
"
>
&6
;
}
PLATDIR
=
plat-
$MACHDEP
# Record the configure-time value of MACOSX_DEPLOYMENT_TARGET,
# it may influence the way we can build extensions, so distutils
# needs to check it
...
...
configure.ac
View file @
1345d201
...
...
@@ -556,6 +556,9 @@ then
fi
AC_MSG_RESULT($MACHDEP)
AC_SUBST(PLATDIR)
PLATDIR=plat-$MACHDEP
# Record the configure-time value of MACOSX_DEPLOYMENT_TARGET,
# it may influence the way we can build extensions, so distutils
# needs to check it
...
...
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