Skip to content

Commit 83aca5c

Browse files
authored
Merge pull request #86 from CloudyPadmal/python3Compatible
fix: python3 compatible
2 parents 657eda5 + fc0ae94 commit 83aca5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ all:
44
#make -C docs/misc all
55
# make in subdirectory PSLab-apps-master if it is there
66
[ ! -d PSLab-apps-master ] || make -C PSLab-apps-master $@ DESTDIR=$(DESTDIR)
7-
python setup.py build
7+
python3 setup.py build
88

99
clean:
1010
rm -rf docs/_*
@@ -22,7 +22,7 @@ install:
2222
install -d $(DESTDIR)/usr/share/doc/pslab
2323
#cp -a docs/_build/html $(DESTDIR)/usr/share/doc/pslab
2424
#cp docs/misc/build/*.html $(DESTDIR)/usr/share/doc/pslab/html
25-
python setup.py install --install-layout=deb \
25+
python3 setup.py install --install-layout=deb \
2626
--root=$(DESTDIR)/ --prefix=/usr
2727
# rules for udev
2828
mkdir -p $(DESTDIR)/lib/udev/rules.d

0 commit comments

Comments
 (0)