Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
mercurial-devel
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mercurial
mercurial-devel
Commits
77061208eafe
Commit
77061208eafe
authored
1 month ago
by
Pierre Augier
Browse files
Options
Downloads
Patches
Plain Diff
makefile: replace `setup.py install` by `pip install`
parent
07ac8528eed8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!1292
Draft: 7.0rc preparation
,
!1216
Static MANIFEST.in, clean up Makefile (less failing direct calls of setup.py)
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Makefile
+5
-5
5 additions, 5 deletions
Makefile
with
5 additions
and
5 deletions
Makefile
+
5
−
5
View file @
77061208
...
...
@@ -43,7 +43,7 @@
@
echo
'Commonly used make targets:'
@
echo
' all - build program and documentation'
@
echo
' install - install program and man pages to $$PREFIX (
$(
PREFIX
)
)'
@
echo
' install-home - install with
setup.py
install --
home=$$HOME (
$(
HOME
)
)
'
@
echo
' install-home - install with
pip
install --
user
'
@
echo
' local - build for inplace usage'
@
echo
' tests - run all tests in the automatic test suite'
@
echo
' test-foo - run only specified tests (e.g. test-merge1.t)'
...
...
@@ -101,8 +101,8 @@
install
:
install-bin install-doc
install-bin
:
build
$(
PYTHON
)
setup.py
$(
PURE
)
install
--root
=
"
$(
DESTDIR
)
/"
--prefix
=
"
$(
PREFIX
)
"
--force
install-bin
:
$(
PYTHON
)
-m
pip
install
--prefix
=
"
$(
PREFIX
)
"
--force
-v
--config-settings
--global-option
=
$(
PURE
)
install-chg
:
build-chg
make
-C
contrib/chg
install
PREFIX
=
"
$(
PREFIX
)
"
...
...
@@ -112,8 +112,8 @@
install-home
:
install-home-bin install-home-doc
install-home-bin
:
build
$(
PYTHON
)
setup.py
$(
PURE
)
install
--home
=
"
$(
HOME
)
"
--prefix
=
""
--force
install-home-bin
:
$(
PYTHON
)
-m
pip
install
--user
--force
-v
--config-settings
--global-option
=
$(
PURE
)
install-home-doc
:
doc
cd
doc
&&
$(
MAKE
)
$(
MFLAGS
)
PREFIX
=
"
$(
HOME
)
"
install
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment