From 9253e8f8cca32615a069ffb7bb9fd763fb7020b8 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Wed, 2 Apr 2014 23:42:13 +0300 Subject: Now with actual workingness! --- xcodebackend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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') -- cgit v1.1