Skip to content

Commit 3e20724

Browse files
committed
Use pip instead of setup.py in Makefile
`setup.py install` has been deprecated for a long time.
1 parent 0086eae commit 3e20724

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ROOT ?= /
44
PREFIX ?= /usr/local
55

66
install:
7-
${PYTHON} setup.py install --prefix="${DESTDIR}${PREFIX}" --root="${DESTDIR}${ROOT}"
7+
${PYTHON} -m pip install --prefix="${DESTDIR}${PREFIX}" --root="${DESTDIR}${ROOT}" .
88

99
# Remove `protontricks-desktop-install`, since we already install
1010
# .desktop files properly

0 commit comments

Comments
 (0)