From 303c61a7bbc7d58dc126e10f709510add4b920fd Mon Sep 17 00:00:00 2001 From: henry Date: Tue, 3 Jun 2008 23:15:37 +0100 Subject: [PATCH] * bin/tools/buildParaViewFunctions: Added comment to previous change --- bin/tools/buildParaViewFunctions | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/tools/buildParaViewFunctions b/bin/tools/buildParaViewFunctions index 057a196c73..4563caff35 100755 --- a/bin/tools/buildParaViewFunctions +++ b/bin/tools/buildParaViewFunctions @@ -235,12 +235,15 @@ installParaView () cd $PARAVIEW_OBJ_DIR - # replace local links with ParaView_INST_DIR environment variables + # Replace PARAVIEW_SRC_DIR path with ParaView_INST_DIR + # environment variables echo " Replacing path hard links" find . -iname \*.cmake -execdir sed -i \ "s,$PARAVIEW_SRC_DIR,\$ENV{ParaView_INST_DIR},g" {} ';' \ -print + # Replace local OPENMPI_ARCH_PATH path with OPENMPI_ARCH_PATH + # environment variables if [ "$INCLUDE_MPI" = ON ]; then find . -iname \*.cmake -execdir sed -i \ "s,$OPENMPI_ARCH_PATH,\$ENV{OPENMPI_ARCH_PATH},g" {} ';' \