From be3623ef706c7690642d5a770ead9203f5506b0c Mon Sep 17 00:00:00 2001 From: cmaurini Date: Wed, 1 Apr 2015 10:08:36 +0200 Subject: [PATCH] set OPENBLAS_DIR in openblas.yaml when build dependencies I found that the numpy package is not able to find openblas at compile time, because it is looking in `$OPENBLAS_DIR/lib` and `OPENBLAS_DIR` is not set in `openblas.yaml `. I think that this setting should be unable. At least with this change numpy finds openblas for me. --- pkgs/openblas.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/openblas.yaml b/pkgs/openblas.yaml index 03942c318..1c6948aab 100644 --- a/pkgs/openblas.yaml +++ b/pkgs/openblas.yaml @@ -19,3 +19,4 @@ build_stages: when_build_dependency: - {set: 'BLAS_LDFLAGS', value: '-Wl,-rpath,${ARTIFACT}/lib -L${ARTIFACT}/lib -lopenblas'} - {set: 'LAPACK_LDFLAGS', value: '-Wl,-rpath,${ARTIFACT}/lib -L${ARTIFACT}/lib -lopenblas'} +- {set: 'OPENBLAS_DIR', value: '${ARTIFACT}'}