aboutsummaryrefslogtreecommitdiff
path: root/xcodebackend.py
diff options
context:
space:
mode:
Diffstat (limited to 'xcodebackend.py')
-rw-r--r--xcodebackend.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/xcodebackend.py b/xcodebackend.py
index 95f5f5d..d1bd8aa 100644
--- a/xcodebackend.py
+++ b/xcodebackend.py
@@ -267,7 +267,7 @@ class XCodeBackend(backends.Backend):
if isinstance(t, build.Executable):
typestr = 'compiled.mach-o.executable'
path = t.get_filename()
- if isinstance(t, build.SharedLibrary):
+ elif isinstance(t, build.SharedLibrary):
# OSX has a completely different shared library
# naming scheme so do this manually.
typestr = self.get_xcodetype('dummy.dylib')