Skip to content
Snippets Groups Projects
Commit bc3882c9 authored by Thomas Fetzer's avatar Thomas Fetzer
Browse files

Merge branch 'fix/installexternal' into 'master'

Fix/installexternal



See merge request !167
parents 5ac87058 c863fdb7
No related branches found
No related tags found
1 merge request!167Fix/installexternal
...@@ -412,17 +412,12 @@ for TMP in "$@"; do ...@@ -412,17 +412,12 @@ for TMP in "$@"; do
MPICXX=$(which mpicxx) MPICXX=$(which mpicxx)
MPIF77=$(which mpif77) MPIF77=$(which mpif77)
if test -f $(pwd)'/../dune-common/bin/mpi-config'; then if test -f $TOPDIR'/dune-common/bin/mpi-config'; then
MPICONFIG=$(pwd)'/../dune-common/bin/mpi-config' MPICONFIG=$TOPDIR'/dune-common/bin/mpi-config'
else else
if test -f $(pwd)'/../dune-common-2.0/bin/mpi-config' echo "MPICONFIG not found!"
then return
MPICONFIG=$(pwd)'/../dune-common-2.0/bin/mpi-config' fi
else
echo "MPICONFIG not found!"
return
fi
fi
MPILIBS=$($MPICONFIG --libs) MPILIBS=$($MPICONFIG --libs)
MPILIBDIR=$(echo $MPILIBS | sed "s/.*-L\([^[:blank:]]*\).*/\1/") MPILIBDIR=$(echo $MPILIBS | sed "s/.*-L\([^[:blank:]]*\).*/\1/")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment