Changeset 14980


Ignore:
Timestamp:
2008-02-13T10:10:05+13:00 (16 years ago)
Author:
davidb
Message:

Couple of additions near end of script to support Extentions, and updating environment vars is a 'local' directory top-level should be present -- useful for putting things such as an apache web-server there

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/setup.bash

    r8734 r14980  
    182182unset gsdlfromenc
    183183unset gsdltoenc
     184
     185if [ -e ext ] ; then
     186  for gsdl_ext in ext/* ; do
     187    cd $gsdl_ext
     188    if [ -e setup.bash ] ; then
     189      . setup.bash
     190    fi
     191    cd ../.. 
     192  done
     193fi
     194
     195if [ -e local ] ; then
     196  export PATH=$GSDLHOME/local/bin:$PATH
     197  export LD_LIBRARY_PATH=$GSDLHOME/local/lib:$LD_LIBRARY_PATH
     198fi
     199
     200
Note: See TracChangeset for help on using the changeset viewer.