1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
---
Makefile | 6 +++---
fusion-icon | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
--- a/Makefile
+++ b/Makefile
@@ -3,13 +3,13 @@ DESTDIR = '/'
interfaces = 'qt gtk'
all:
- @python setup.py build
+ @python3 setup.py build
install:
- @python setup.py install --prefix=${PREFIX} --root=${DESTDIR}
+ @python3 setup.py install --prefix=${PREFIX} --root=${DESTDIR}
uninstall:
- @python setup.py uninstall
+ @python3 setup.py uninstall
clean:
rm -rf build/
--- a/fusion-icon
+++ b/fusion-icon
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
# This file is part of Fusion-icon.
# Fusion-icon is free software; you can redistribute it and/or modify
|