From 501019543589194419aa2411ae2bde71ab50ef86 Mon Sep 17 00:00:00 2001 From: Scot Breitenfeld Date: Thu, 18 Aug 2016 13:24:02 -0500 Subject: [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) --- m4/aclocal_fc.m4 | 6 +++--- 1 file 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 ]) -- cgit v0.12