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
a48b61f8
Commit
a48b61f8
authored
Feb 08, 2013
by
Ned Deily
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #17161: make install now also installs a python3 man page.
parent
1273dfc3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
5 deletions
+12
-5
Makefile.pre.in
Makefile.pre.in
+10
-5
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Makefile.pre.in
View file @
a48b61f8
...
...
@@ -830,10 +830,10 @@ memtest: all platform
-
$(TESTPYTHON)
$(TESTPROG)
$(MEMTESTOPTS)
$(TESTPYTHON)
$(TESTPROG)
$(MEMTESTOPTS)
install
:
altinstall bininstall
install
:
altinstall bininstall
maninstall
altinstall
:
@FRAMEWORKALTINSTALLFIRST@ altbininstall libinstall inclinstall libainstall
\
sharedinstall oldsharedinstall maninstall @FRAMEWORKALTINSTALLLAST@
sharedinstall oldsharedinstall
alt
maninstall @FRAMEWORKALTINSTALLLAST@
# Install shared libraries enabled by Setup
DESTDIRS
=
$(exec_prefix)
$(LIBDIR)
$(BINLIBDEST)
$(DESTSHARED)
...
...
@@ -912,8 +912,8 @@ bininstall: altbininstall
-
rm
-f
$(DESTDIR)$(BINDIR)
/2to3
(
cd
$(DESTDIR)$(BINDIR)
;
$(LN)
-s
2to3-
$(VERSION)
2to3
)
# Install the manual page
maninstall
:
# Install the
versioned
manual page
alt
maninstall
:
@
for
i
in
$(MANDIR)
$(MANDIR)
/man1
;
\
do
\
if
test
!
-d
$(DESTDIR)$$
i
;
then
\
...
...
@@ -925,6 +925,11 @@ maninstall:
$(INSTALL_DATA)
$(srcdir)
/Misc/python.man
\
$(DESTDIR)$(MANDIR)
/man1/python
$(VERSION)
.1
# Install the unversioned manual page
maninstall
:
altmaninstall
-
rm
-f
$(DESTDIR)$(MANDIR)
/man1/python3.1
(
cd
$(DESTDIR)$(MANDIR)
/man1
;
$(LN)
-s
python
$(VERSION)
.1 python3.1
)
# Install the library
PLATDIR
=
plat-
$(MACHDEP)
EXTRAPLATDIR
=
@EXTRAPLATDIR@
...
...
@@ -1360,7 +1365,7 @@ Python/thread.o: @THREADHEADERS@
.PHONY
:
frameworkinstall frameworkinstallframework frameworkinstallstructure
.PHONY
:
frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
.PHONY
:
frameworkaltinstallunixtools recheck autoconf clean clobber distclean
.PHONY
:
smelly funny patchcheck
.PHONY
:
smelly funny patchcheck
altmaninstall
.PHONY
:
gdbhooks
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
...
...
Misc/NEWS
View file @
a48b61f8
...
...
@@ -993,6 +993,8 @@ Build
Retina displays. Applies to Tkinter apps, such as IDLE, on OS X
framework builds linked with Cocoa Tk 8.5.
- Issue #17161: make install now also installs a python3 man page.
Tools/Demos
-----------
...
...
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