make readelf.py pick up local elftools before system one
authorEli Bendersky <eliben@gmail.com>
Sat, 6 Apr 2013 14:05:35 +0000 (07:05 -0700)
committerEli Bendersky <eliben@gmail.com>
Sat, 6 Apr 2013 14:05:35 +0000 (07:05 -0700)
scripts/readelf.py

index 69ad480cc0613a9c31fecbef5f3b53c2dcc4be52..64d0174e9e75316d191fc24fb38044d120d4cde5 100755 (executable)
@@ -11,12 +11,9 @@ import os, sys
 from optparse import OptionParser
 import string
 
-# If elftools is not installed, maybe we're running from the root or scripts
-# dir of the source distribution
-try:
-    import elftools
-except ImportError:
-    sys.path.extend(['.', '..'])
+# If we're running from the root of the development directory, elftools should
+# be loaded from there.
+sys.path.insert(0, '.')
 
 from elftools import __version__
 from elftools.common.exceptions import ELFError