This is to make sure the old paths do not get linked in preference, which could cause errors on updating
14 lines
428 B
Bash
Executable File
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*
|
|
|
|
#------------------------------------------------------------------------------
|