Skip to content

Commit

Permalink
rerun autotools to fix --with-lapack-lflags
Browse files Browse the repository at this point in the history
- for issue reported in coin-or#512
  • Loading branch information
svigerske committed Sep 15, 2021
1 parent f4e0ed8 commit 8abfbb4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ More detailed information about incremental changes can be found in the

- Only skip build of Java interface if javac found, but no jar [#510].
Only give warning if javac and jar are found, but no java or javadoc.
- Fixed that `--with-lapack-lflags` was ignored if `--with-lapack` was not
specified explicitly [#512].

### 3.14.3 (2021-09-03)

Expand Down
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -22862,7 +22862,7 @@ fi
lapack_keep_looking=yes

if test "$with_lapack" != "no" ; then
if test "$with_lapack" != "yes" ; then
if test "$with_lapack" != "yes" && test -z "$with_lapack_lflags" ; then
with_lapack_lflags="$with_lapack"
fi
if test -n "$with_lapack_lflags" ; then
Expand Down

0 comments on commit 8abfbb4

Please sign in to comment.