summarylogtreecommitdiffstats
path: root/salome-smesh.profile
diff options
context:
space:
mode:
Diffstat (limited to 'salome-smesh.profile')
-rw-r--r--salome-smesh.profile32
1 files changed, 0 insertions, 32 deletions
diff --git a/salome-smesh.profile b/salome-smesh.profile
deleted file mode 100644
index f05b33f142de..000000000000
--- a/salome-smesh.profile
+++ /dev/null
@@ -1,32 +0,0 @@
-# module var
-export SMESH_ROOT_DIR=/opt/salome
-
-# local vars
-_pythonver=2.7
-_paraviewver=4.2
-_smesh_path=$SMESH_ROOT_DIR/bin/salome
-_smesh_librarypath=$SMESH_ROOT_DIR/lib/salome
-_smesh_pythonpath=$SMESH_ROOT_DIR/lib/python${_pythonver}/site-packages/salome
-_paraview_pythonpath="/usr/lib/paraview-${_paraviewver}/site-packages/:/usr/lib/paraview-${_paraviewver}/site-packages/vtk"
-_paraview_librarypath="/usr/lib/paraview-${_paraviewver}"
-
-# PYTHONPATH
-if [[ $PYTHONPATH != *${_smesh_pythonpath}* ]]; then
- export PYTHONPATH=${_smesh_pythonpath}:$PYTHONPATH
-fi
-if [[ $PYTHONPATH != *${_paraview_pythonpath}* ]]; then
- export PYTHONPATH=${_paraview_pythonpath}:$PYTHONPATH
-fi
-
-# LD_LIBRARY_PATH
-if [[ $LD_LIBRARY_PATH != *${_smesh_librarypath}* ]]; then
- export LD_LIBRARY_PATH=${_smesh_librarypath}:$LD_LIBRARY_PATH
-fi
-if [[ $LD_LIBRARY_PATH != *${_paraview_librarypath}* ]]; then
- export LD_LIBRARY_PATH=${_paraview_librarypath}:$LD_LIBRARY_PATH
-fi
-
-# PATH
-if [[ $PATH != *${_smesh_path}* ]]; then
- export PATH=${_smesh_path}:$PATH
-fi