summaryrefslogtreecommitdiff
path: root/lib/make/configure.pl
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-09-23 09:53:24 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-09-23 09:53:24 +0000
commitdc6ae555d3510e40975d7e742b67d3ca118b8bb1 (patch)
treea107cb7f1ec89bcbdd71107400a641d72663c357 /lib/make/configure.pl
parent3b147fed4f61018040bb0009d1d5ddbb9f8d8576 (diff)
Use the compiler flags which are passed in.
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@1842 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make/configure.pl')
-rwxr-xr-xlib/make/configure.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/make/configure.pl b/lib/make/configure.pl
index 5cf1bd46..8321f6b4 100755
--- a/lib/make/configure.pl
+++ b/lib/make/configure.pl
@@ -52,8 +52,8 @@ EOT
close OUT;
# Compile the test file
- print "Compiling test file with $compiler...\n";
- system("$compiler -c fname_test.f");
+ print "Compiling test file with $compiler $opts...\n";
+ system("$compiler $opts -c fname_test.f");
$retcode = $? >> 8;
@@ -191,8 +191,8 @@ EOT
close OUT;
# Compile the test file
- print "Compiling test file with $compiler...\n";
- system("$compiler -c fname_test.f");
+ print "Compiling test file with $compiler $opts...\n";
+ system("$compiler $opts -c fname_test.f");
$retcode = $? >> 8;