~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to pvm3/lib/bashrc.stub

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#
 
3
# append this file to your .bashrc to set path according to machine
 
4
# type.  you may wish to use this for your own programs (edit the last
 
5
# part to point to a different directory f.e. ~/bin/_$PVM_ARCH.
 
6
#
 
7
if [ -z $PVM_ROOT ]; then
 
8
    if [ -d ~/pvm3 ]; then
 
9
        export PVM_ROOT=~/pvm3
 
10
    else
 
11
        echo "Warning - PVM_ROOT not defined"
 
12
        echo "To use PVM, define PVM_ROOT and rerun your .bashrc"
 
13
    fi
 
14
fi
 
15
 
 
16
if [ -n $PVM_ROOT ]; then
 
17
    export PVM_ARCH=`$PVM_ROOT/lib/pvmgetarch`
 
18
#
 
19
# uncomment one of the following lines if you want the PVM commands
 
20
# directory to be added to your shell path.
 
21
#
 
22
#       export PATH=$PATH:$PVM_ROOT/lib            # generic
 
23
#       export PATH=$PATH:$PVM_ROOT/lib/$PVM_ARCH  # arch-specific
 
24
#
 
25
# uncomment the following line if you want the PVM executable directory
 
26
# to be added to your shell path.
 
27
#
 
28
#       export PATH=$PATH:$PVM_ROOT/bin/$PVM_ARCH
 
29
fi
 
30