aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsbrandt <sbrandt@043a8217-7a68-40fe-abfd-36aa7d4fa6a8>2014-09-09 21:45:08 +0000
committersbrandt <sbrandt@043a8217-7a68-40fe-abfd-36aa7d4fa6a8>2014-09-09 21:45:08 +0000
commite0fbac258f64198de1ee8b6127200f145f04226d (patch)
tree496537af24305adb0774039553b58f95dbca7ccf
parent5c694e0838cd31022593fd8b1f725187806efbc6 (diff)
One last little problem with NO_BUILD
git-svn-id: http://svn.cactuscode.org/projects/ExternalLibraries/MPI/trunk@46 043a8217-7a68-40fe-abfd-36aa7d4fa6a8
-rw-r--r--configure.pl5
1 files changed, 1 insertions, 4 deletions
diff --git a/configure.pl b/configure.pl
index 6357520..d2bc962 100644
--- a/configure.pl
+++ b/configure.pl
@@ -49,7 +49,7 @@ if("$ENV{MPI_DIR}" =~ /^\s*$/) {
message("MPI selected, but MPI_DIR is not set. Computing settings...");
$mpi_build = 1;
$mpi_search = 1;
-} elsif(-d $ENV{MPI_DIR}) {
+} elsif(-d $ENV{MPI_DIR} or $ENV{MPI_DIR} eq "NO_BUILD") {
$mpi_dir = $ENV{MPI_DIR};
$mpi_search = 0;
$mpi_build = 0;
@@ -57,9 +57,6 @@ if("$ENV{MPI_DIR}" =~ /^\s*$/) {
} elsif($ENV{MPI_DIR} eq "BUILD") {
$mpi_build = 1;
$mpi_search = 0;
-} elsif($ENV{MPI_DIR} eq "NO_BUILD") {
- $mpi_build = 0;
- $mpi_search = 0;
} else {
$mpi_build = 1;
$mpi_search = 1;