Skip to content
This repository was archived by the owner on Feb 1, 2023. It is now read-only.

Commit 7ff26df

Browse files
author
Matthias Koeppe
committed
git grep -l SAGE_SUITESPARSE | xargs sed -i .bak s/SAGE_SUITESPARSE_LOCALINSTALL/SAGE_SUITESPARSE_PREFIX/g
1 parent a89f81d commit 7ff26df

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build/pkgs/cvxopt/spkg-install.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export CVXOPT_BLAS_LIB="$(cvxopt_output l blas)"
6565
export CVXOPT_BLAS_LIB_DIR="$(pkg-config --variable=libdir blas)"
6666
export CVXOPT_LAPACK_LIB="$(cvxopt_output l lapack)"
6767

68-
if test "x$SAGE_SUITESPARSE_LOCALINSTALL" != "x"; then
68+
if test "x$SAGE_SUITESPARSE_PREFIX" != "x"; then
6969
export CVXOPT_SUITESPARSE_LIB_DIR="${SAGE_LOCAL}"
7070
export CVXOPT_SUITESPARSE_INC_DIR="${SAGE_LOCAL}/include"
7171
fi

build/pkgs/suitesparse/spkg-configure.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ SAGE_SPKG_CONFIGURE([suitesparse], [
1717
sage_spkg_install_suitesparse=yes])
1818
], [], [], [
1919
AS_IF([test x$sage_spkg_install_suitesparse = xyes], [
20-
AC_SUBST(SAGE_SUITESPARSE_LOCALINSTALL, ['$SAGE_LOCAL'])
20+
AC_SUBST(SAGE_SUITESPARSE_PREFIX, ['$SAGE_LOCAL'])
2121
], [
22-
AC_SUBST(SAGE_SUITESPARSE_LOCALINSTALL, [''])
22+
AC_SUBST(SAGE_SUITESPARSE_PREFIX, [''])
2323
])
2424
])

0 commit comments

Comments
 (0)