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
aa20b000
Commit
aa20b000
authored
Feb 08, 2013
by
Ned Deily
Browse files
Options
Browse Files
Download
Plain Diff
Issue #17161: make install now also installs a python3 man page.
parents
70ea7fa6
a48b61f8
Changes
2
Hide 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 @
aa20b000
...
...
@@ -886,10 +886,10 @@ quicktest: all platform
$(TESTRUNNER)
$(QUICKTESTOPTS)
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)
...
...
@@ -970,8 +970,8 @@ bininstall: altbininstall
-
rm
-f
$(DESTDIR)$(BINDIR)
/pyvenv
(
cd
$(DESTDIR)$(BINDIR)
;
$(LN)
-s
pyvenv-
$(VERSION)
pyvenv
)
# 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
\
...
...
@@ -983,6 +983,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@
...
...
@@ -1452,7 +1457,7 @@ Python/thread.o: @THREADHEADERS@
.PHONY
:
frameworkinstall frameworkinstallframework frameworkinstallstructure
.PHONY
:
frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
.PHONY
:
frameworkaltinstallunixtools recheck autoconf clean clobber distclean
.PHONY
:
smelly funny patchcheck touch
.PHONY
:
smelly funny patchcheck touch
altmaninstall
.PHONY
:
gdbhooks
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
...
...
Misc/NEWS
View file @
aa20b000
...
...
@@ -663,6 +663,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