aboutsummaryrefslogtreecommitdiff
path: root/configure.sh
diff options
context:
space:
mode:
authorrhaas <rhaas@c7ba4c71-c2f2-49b2-85d5-cb7b5f04bdfb>2012-11-07 02:46:00 +0000
committerrhaas <rhaas@c7ba4c71-c2f2-49b2-85d5-cb7b5f04bdfb>2012-11-07 02:46:00 +0000
commitd7d60e213206bdab04fc173ccd593ba33044f363 (patch)
treeecc1de423330447cd39527cdbb4ae9309ffdb90c /configure.sh
parent8095c277920a56cc2e5ded49ffa9d430236ebb80 (diff)
support LAPACK_INC_DIRS, LAPACK_LIB_DIRS to specify these folders directly
in case an LAPACK installation stores its library in include files in odd places git-svn-id: http://svn.cactuscode.org/projects/ExternalLibraries/LAPACK/trunk@34 c7ba4c71-c2f2-49b2-85d5-cb7b5f04bdfb
Diffstat (limited to 'configure.sh')
-rw-r--r--configure.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.sh b/configure.sh
index e0f1828..35af7c7 100644
--- a/configure.sh
+++ b/configure.sh
@@ -166,8 +166,8 @@ fi
# Set options
if [ "${LAPACK_DIR}" != '/usr/lib' -a "${LAPACK_DIR}" != '/usr/local/lib' ]; then
- LAPACK_INC_DIRS=
- LAPACK_LIB_DIRS="${LAPACK_DIR}"
+ : ${LAPACK_INC_DIRS=}
+ : ${LAPACK_LIB_DIRS="${LAPACK_DIR}"}
fi
: ${LAPACK_LIBS='lapack'}