added git option

This commit is contained in:
andy
2009-12-09 10:06:00 +00:00
parent 5329c39999
commit 99c22976ea
4 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@ set -x
if [ -d "$ParaView_DIR" -a -r "$ParaView_DIR" ]
then
case "$ParaView_VERSION" in
3*)
3* | git)
wmake libso vtkPV3Readers
PV3blockMeshReader/Allwmake
PV3FoamReader/Allwmake

View File

@ -5,7 +5,7 @@ set -x
if [ -d "$ParaView_DIR" -a -r "$ParaView_DIR" ]
then
case "$ParaView_VERSION" in
3*)
3* | git)
wmake libso vtkPV3Foam
(
cd PV3FoamReader

View File

@ -5,7 +5,7 @@ set -x
if [ -d "$ParaView_DIR" -a -r "$ParaView_DIR" ]
then
case "$ParaView_VERSION" in
3*)
3* | git)
wmake libso vtkPV3blockMesh
(
cd PV3blockMeshReader

View File

@ -130,7 +130,7 @@ OpenFOAM)
esac
case "$ParaView_VERSION" in
3*)
3* | git)
# only create/remove caseFile if it didn't already exist
[ -e $caseFile ] || {
trap "rm -f $caseFile 2>/dev/null; exit 0" EXIT TERM INT