From 4d6ad4b142c3e698461d08f14985f7d0582609aa Mon Sep 17 00:00:00 2001 From: Matt Rendina Date: Thu, 29 Jun 2017 13:47:11 -0400 Subject: Invert skip logic --- pyobjc-core/meta.yaml | 2 +- pyobjc-framework-cocoa/meta.yaml | 2 +- pyobjc-framework-quartz/meta.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyobjc-core/meta.yaml b/pyobjc-core/meta.yaml index ac6c7b2..bf62a36 100644 --- a/pyobjc-core/meta.yaml +++ b/pyobjc-core/meta.yaml @@ -8,7 +8,7 @@ about: summary: Python<->ObjC Interoperability Module build: - skip: False [osx] + skip: True [not osx] number: {{ number }} preserve_egg_dir: 'true' diff --git a/pyobjc-framework-cocoa/meta.yaml b/pyobjc-framework-cocoa/meta.yaml index 90ca3eb..3abc490 100644 --- a/pyobjc-framework-cocoa/meta.yaml +++ b/pyobjc-framework-cocoa/meta.yaml @@ -8,7 +8,7 @@ about: summary: Wrappers for the Cocoa frameworks on Mac OS X build: - skip: False [osx] + skip: True [not osx] number: {{ number }} preserve_egg_dir: 'true' diff --git a/pyobjc-framework-quartz/meta.yaml b/pyobjc-framework-quartz/meta.yaml index dd454ab..b0303aa 100644 --- a/pyobjc-framework-quartz/meta.yaml +++ b/pyobjc-framework-quartz/meta.yaml @@ -8,7 +8,7 @@ about: summary: Wrappers for the Quartz frameworks on Mac OS X build: - skip: False [osx] + skip: True [not osx] number: {{ number }} preserve_egg_dir: 'true' -- cgit