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
81638f13
Commit
81638f13
authored
Mar 06, 2011
by
Thomas Wouters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #11411: Fix typo in the Makefile that prevented 'make DESTDIR=' from
working correctly with a relative path.
parent
21967d0b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
Makefile.pre.in
Makefile.pre.in
+2
-2
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Makefile.pre.in
View file @
81638f13
...
...
@@ -1035,7 +1035,7 @@ sharedinstall: sharedmods
--prefix
=
$(prefix)
\
--install-scripts
=
$(BINDIR)
\
--install-platlib
=
$(DESTSHARED)
\
--root
=
/
$(DESTDIR)
--root
=
$(DESTDIR)
/
# Here are a couple of targets for MacOSX again, to install a full
# framework-based Python. frameworkinstall installs everything, the
...
...
@@ -1115,7 +1115,7 @@ scriptsinstall:
./
$(BUILDPYTHON)
$(srcdir)
/Tools/scripts/setup.py
install
\
--prefix
=
$(prefix)
\
--install-scripts
=
$(BINDIR)
\
--root
=
/
$(DESTDIR)
--root
=
$(DESTDIR)
/
# Build the toplevel Makefile
Makefile.pre
:
Makefile.pre.in config.status
...
...
Misc/NEWS
View file @
81638f13
...
...
@@ -192,6 +192,8 @@ Extensions
Build
-----
- Issue #11411: Fix 'make DESTDIR=' with a relative destination.
- Issue #11184: Fix large-file support on AIX.
- Issue #941346: Fix broken shared library build on AIX.
...
...
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