From 596a276a264e93687aa41783acb45536a0bebb32 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Wed, 18 May 2016 18:07:10 +0200 Subject: [PATCH] setup.py: add check for platform_darwin.c this was just forgotten... --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ff9899da5..e7abc79e0 100644 --- a/setup.py +++ b/setup.py @@ -79,7 +79,7 @@ except ImportError: from distutils.command.build_ext import build_ext if not on_rtd and not all(os.path.exists(path) for path in [ compress_source, crypto_source, chunker_source, hashindex_source, - platform_linux_source, platform_freebsd_source]): + platform_linux_source, platform_freebsd_source, platform_darwin_source]): raise ImportError('The GIT version of Borg needs Cython. Install Cython or use a released version.')