summaryrefslogtreecommitdiff
path: root/math/py-Scientific/patches/patch-aa
blob: 85d7b66d9fd62bb3ca0e28bb6b291e79ab7e7fe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$NetBSD: patch-aa,v 1.2 2001/05/10 17:03:28 drochner Exp $

--- setup.py.orig	Thu May 10 18:29:09 2001
+++ setup.py	Thu May 10 18:30:26 2001
@@ -7,7 +7,7 @@
 
 # If your netCDF installation is in a non-standard place, set the following
 # variable to the base directory.
-netcdf_prefix = None
+netcdf_prefix = '@NETCDFPREFIX@'
 
 
 if netcdf_prefix is None:
@@ -28,6 +28,7 @@
                              ['Src/Scientific_netcdf.c'],
                              include_dirs=['Include', netcdf_include],
                              library_dirs=[netcdf_lib],
+                             runtime_library_dirs=[netcdf_lib],
                              libraries = ['netcdf'])]
 
 class modified_install_headers(install_headers):