summaryrefslogtreecommitdiffstats
path: root/build/osx
diff options
context:
space:
mode:
authorJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2019-08-11 17:19:08 +0200
committerJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2019-08-11 17:23:48 +0200
commit52de8410025a91d3052bb0a7516d5ddf59aae2de (patch)
tree4e96e7373a47eafe3aa556386229f64a870e96d5 /build/osx
parentecfbad418e77c0eee5db3ef93c56f60d44215919 (diff)
scons: Remove unused imports
Diffstat (limited to 'build/osx')
-rw-r--r--build/osx/otool.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/build/osx/otool.py b/build/osx/otool.py
index 956f72a3ad..9391b2a9c2 100644
--- a/build/osx/otool.py
+++ b/build/osx/otool.py
@@ -1,6 +1,7 @@
-
import os
import subprocess
+import sys
+
#This page is REALLY USEFUL: http://www.cocoadev.com/index.pl?ApplicationLinking
#question: why do dylibs embed their install name in themselves? that would seem to imply the system keeps a cache of all the "install names", but that's not what the docs seem to say.
@@ -34,10 +35,6 @@ import subprocess
#Assumption: the loadlinks inside of an embeddable framework are all relative
-import sys,os
-
-
-
def system(s):
"wrap system() to give us feedback on what it's doing"
"anything using this call should be fixed to use SCons's declarative style (once you figure that out, right nick?)"