summaryrefslogtreecommitdiffstats
path: root/m4
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2016-08-18 18:24:02 (GMT)
committerScot Breitenfeld <brtnfld@hdfgroup.org>2016-08-18 18:24:02 (GMT)
commit501019543589194419aa2411ae2bde71ab50ef86 (patch)
tree66d85a0dd5cc19a3b5ca225ccccc2858942da675 /m4
parent6d7ac8aa1588ca3c83537a0ee05192569fc397c2 (diff)
downloadhdf5-501019543589194419aa2411ae2bde71ab50ef86.zip
hdf5-501019543589194419aa2411ae2bde71ab50ef86.tar.gz
hdf5-501019543589194419aa2411ae2bde71ab50ef86.tar.bz2
[svn-r30300] Fixed the ordering for KIND and SIZE_OF in the fortarn program in order to match the sed commands.
Should only matter for the NAG compiler. Tested: (gnu, jelly)
Diffstat (limited to 'm4')
-rw-r--r--m4/aclocal_fc.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/aclocal_fc.m4 b/m4/aclocal_fc.m4
index 23f7482..717d1f4 100644
--- a/m4/aclocal_fc.m4
+++ b/m4/aclocal_fc.m4
@@ -400,12 +400,12 @@ rm -f pac_fconftest.out
REAL b
DOUBLE PRECISION c
OPEN(8, FILE='pac_fconftest.out', FORM='formatted')
+ WRITE(8,*) KIND(a)
WRITE(8,*) $FC_SIZEOF_A
- WRITE(8,*) kind(a)
+ WRITE(8,*) KIND(b)
WRITE(8,*) $FC_SIZEOF_B
- WRITE(8,*) kind(b)
+ WRITE(8,*) KIND(c)
WRITE(8,*) $FC_SIZEOF_C
- WRITE(8,*) kind(c)
CLOSE(8)
END
])