diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2021-01-10 19:36:31 +0000 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2021-01-10 19:36:31 +0000 |
commit | 59eb58cf7486ea1cb76c40091ab5b5b2f6ea297a (patch) | |
tree | 92c788c3bb608777c5a69adf17f1e1fc01cfd794 | |
parent | 878b93dbd908d14abb173d0197c694d47dcafb66 (diff) | |
download | ports-59eb58cf7486ea1cb76c40091ab5b5b2f6ea297a.tar.gz ports-59eb58cf7486ea1cb76c40091ab5b5b2f6ea297a.zip |
Fix a fatal Fortran error (invalid unit number).
Submitted by: Stephen Hickmott <stephen (at) featplus.co.uk>
Notes
Notes:
svn path=/head/; revision=561106
-rw-r--r-- | math/mumps/Makefile | 2 | ||||
-rw-r--r-- | math/mumps/files/patch-src_dana__aux.F | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/math/mumps/Makefile b/math/mumps/Makefile index b63992fdb8e2..fd4a1eea0a91 100644 --- a/math/mumps/Makefile +++ b/math/mumps/Makefile @@ -3,7 +3,7 @@ PORTNAME= mumps DISTVERSION= 5.1.2-aster7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math PKGNAMESUFFIX= -edf diff --git a/math/mumps/files/patch-src_dana__aux.F b/math/mumps/files/patch-src_dana__aux.F new file mode 100644 index 000000000000..f05b04c9d898 --- /dev/null +++ b/math/mumps/files/patch-src_dana__aux.F @@ -0,0 +1,11 @@ +--- src/dana_aux.F.orig 2020-10-23 09:16:48 UTC ++++ src/dana_aux.F +@@ -3008,7 +3008,7 @@ C + & write(MPG,'(A,1I5)') + & ' Average density of rows/columns =', AvgDens + IF (MP.GT.0 .AND. MPG.NE.MP.AND.(ICNTL(4).GE.2)) +- & write(MPG,'(A,1I5)') ++ & write(MP,'(A,1I5)') + & ' Average density of rows/columns =', AvgDens + RETURN + 99999 FORMAT (/'*** Warning message from analysis routine ***') |