summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2012-12-13 05:09:15 -0500
committerDavid Malcolm <dmalcolm@redhat.com>2013-01-15 14:22:03 -0500
commit7c4d887595622d23d6f84b774494c140a8a782c0 (patch)
tree134646a68f46c6fc699b3682ed0a3e0c3cf569ff
parent0bfcfc18fa81fcbb9c9c3a1c715d013e25cf46ca (diff)
downloadpython-ethtool-7c4d887595622d23d6f84b774494c140a8a782c0.tar.gz
python-ethtool-7c4d887595622d23d6f84b774494c140a8a782c0.tar.xz
python-ethtool-7c4d887595622d23d6f84b774494c140a8a782c0.zip
remove redundant material from setup.py
Commit d3fd6b84f461a4d7ffbf3f3eae37381150b69e82 introduced an ext_modules keyword argument to the setup invocation in setup.py, making the exttool = Extension(...) code at the top of setup.py redundant. Remove the redundant code.
-rw-r--r--setup.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/setup.py b/setup.py
index b8cbe9f..f081aa6 100644
--- a/setup.py
+++ b/setup.py
@@ -6,10 +6,6 @@ import sys
version = '0.7'
-ethtool = Extension('ethtool',
- sources = ['python-ethtool/ethtool.c',
- 'python-ethtool/etherinfo.c', 'python-ethtool/etherinfo_obj.c'])
-
def pkgconfig(pkg):
def _str2list(pkgstr, onlystr):
res = []