1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: David Paleino <dapal@debian.org>
Subject: don't compile datum files, as we're using the ones provided by
proj-data
Origin: vendor
Forwarded: not-needed
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- python-pyproj.orig/setup.py
+++ python-pyproj/setup.py
@@ -8,7 +8,7 @@ extensions.append(Extension("pyproj._geo
# create binary datum shift grid files.
pathout = os.path.join('lib',os.path.join('pyproj','data'))
-if sys.argv[1] != 'sdist':
+if False:
cc = ccompiler.new_compiler()
sysconfig.customize_compiler(cc)
cc.set_include_dirs(['src'])
|