Files
OpenFOAM-12/applications/utilities/postProcessing/graphics/PVReaders/Allwclean
Will Bainbridge 48c06ad843 PVReaders: Remove old libvtkPV* libraries during build or clean
This is to make sure the old paths do not get linked in preference,
which could cause errors on updating
2020-10-13 08:29:09 +01:00

14 lines
428 B
Bash
Executable File

#!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory
wclean libso vtkPVblockMesh
wclean libso vtkPVFoam
rm -rf Make PVblockMeshReader/Make PVFoamReader/Make
# Remove the old $FOAM_LIBBIN/libvtkPV*.so libraries, so that they do not get
# linked in preference to the new $PV_PLUGIN_PATH/libvtkPV*.so libraries
rm -f $FOAM_LIBBIN/libvtkPV*
#------------------------------------------------------------------------------