From: Ole Streicher Date: Fri, 15 Jul 2016 06:46:15 +0000 (+0200) Subject: Force the use of the system cfitsio X-Git-Tag: archive/raspbian/1.2.5+dfsg-1+rpi1~1^2^2^2~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=3145a59214aaa685d56a5297ad28f3112434fc28;p=python-fitsio.git Force the use of the system cfitsio The command line option does not help here since it works only with build_ext. Gbp-Pq: Name Force-the-use-of-the-system-cfitsio.patch --- diff --git a/setup.py b/setup.py index afdd162..f0327be 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ class build_ext_subclass(build_ext): cfitsio_dir = 'cfitsio%s' % cfitsio_version def initialize_options(self): - self.use_system_fitsio = False + self.use_system_fitsio = True self.system_fitsio_includedir = None self.system_fitsio_libdir = None build_ext.initialize_options(self)