Temporary fix to allow the reader module to build for ParaView-3.3-cvs

This commit is contained in:
henry
2008-05-26 23:37:28 +01:00
parent 7d7a2c22fc
commit c48a0638af
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#!/bin/sh
set -x
if [ "$ParaView_VERSION" = "3" -a "$ParaView_DIR" -a -r $ParaView_DIR ] ; then
if [ "$ParaView_VERSION" = "3.3-cvs" -a "$ParaView_DIR" -a -r $ParaView_DIR ] ; then
wmake libso vtkPV3Foam
(cd PV3FoamReader; mkdir -p Make/$WM_OPTIONS > /dev/null 2>&1; cd Make/$WM_OPTIONS; cmake ../..; make)
fi

View File

@ -1,7 +1,7 @@
#!/bin/sh
set -x
if [ "$ParaView_VERSION" != "3" -a "$ParaView_DIR" -a -r $ParaView_DIR ] ; then
if [ "$ParaView_VERSION" != "3.3-cvs" -a "$ParaView_DIR" -a -r $ParaView_DIR ] ; then
wmake libso vtkFoam
(cd PVFoamReader; mkdir -p Make/$WM_OPTIONS > /dev/null 2>&1; cd Make/$WM_OPTIONS; cmake ../..; make)
fi