summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-05-14 20:15:56 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-05-14 20:15:56 +0000
commitde2aed840015b85b4cba5aae49a59c7a293eaa72 (patch)
tree7986fac82c2802bfdc2c923a94ed5dec03cfe80a
parent22c555af0c737f3af04dd0ea3ca21670fb994ddf (diff)
Subtle change to fortran name determination which makes
it work with the SGI ia64 compiler, and should also make it work on the SX 5. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@1662 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rwxr-xr-xlib/make/configure.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/make/configure.pl b/lib/make/configure.pl
index 0ffff976..5cf1bd46 100755
--- a/lib/make/configure.pl
+++ b/lib/make/configure.pl
@@ -40,9 +40,10 @@ sub test_fortran_name
open(OUT, ">fname_test.f") || die "Cannot open fname_test.f\n";
print OUT <<EOT;
- subroutine test_name(a)
+ subroutine test(a)
integer a
a = 1
+ call test_name(a)
return
end