From 7c4d887595622d23d6f84b774494c140a8a782c0 Mon Sep 17 00:00:00 2001 From: David Malcolm Date: Thu, 13 Dec 2012 05:09:15 -0500 Subject: 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. --- setup.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'setup.py') 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 = [] -- cgit