aboutsummaryrefslogtreecommitdiffstats
path: root/community/iotop/fix-python.patch
blob: 6f400f7df2d6c585512bf6a670f95c28ff565dcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--- a/setup.py
+++ b/setup.py
@@ -1,15 +1,8 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
 
 from distutils.core import setup
 from distutils.command import install as distutils_install
 from iotop.version import VERSION
-
-# Dirty hack to make setup.py install the iotop script to sbin/ instead of bin/
-# while still honoring the choice of installing into local/ or not.
-if hasattr(distutils_install, 'INSTALL_SCHEMES'):
-    for d in distutils_install.INSTALL_SCHEMES.itervalues():
-        if d.get('scripts', '').endswith('/bin'):
-            d['scripts'] = d['scripts'][:-len('/bin')] + '/sbin'
 
 setup(name='iotop',
       version=VERSION,