diff options
author | Satish Balay <balay@mcs.anl.gov> | 2023-12-07 16:12:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-07 16:12:25 (GMT) |
commit | 92ff840f5881e1b650a8b104ce9358b524930e70 (patch) | |
tree | 1f87918ddf142e347ee6a3a6c3059cf346932c20 | |
parent | 2a4337232843f82c4425c1507f2a06b7e17ee8e1 (diff) | |
download | hdf5-92ff840f5881e1b650a8b104ce9358b524930e70.zip hdf5-92ff840f5881e1b650a8b104ce9358b524930e70.tar.gz hdf5-92ff840f5881e1b650a8b104ce9358b524930e70.tar.bz2 |
Fix build error on freebsd (#3883)
Fixes:
checking for config freebsd12.1... no
checking for config freebsd... found
compiler '/home/svcpetsc/petsc-hash-pkgs/39f577/bin/mpicc' is GNU gcc-9.2.0
compiler '/home/svcpetsc/petsc-hash-pkgs/39f577/bin/mpif90' is GNU gfortran-9.2.0
stdout: .: cannot open ./config/classic-fflags: No such file or directory
-rw-r--r-- | config/freebsd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/freebsd b/config/freebsd index b0e825a..70cf44a 100644 --- a/config/freebsd +++ b/config/freebsd @@ -68,7 +68,7 @@ fi . $srcdir/config/oneapi-fflags # Figure out Intel classic FC compiler flags -. $srcdir/config/classic-fflags +. $srcdir/config/intel-fflags # The default C++ compiler |