IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 18874


Ignore:
Timestamp:
Aug 2, 2008, 12:27:10 AM (18 years ago)
Author:
Sebastian Jester
Message:

Call csh with -f option to speed up startup, avoiding timeouts in 'controller host add' in pantasks

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/sj_branch_20080802/psconfig/psconfig.bash.in

    r16124 r18874  
    77
    88if (( $# == 0 )); then
    9   /bin/csh $PSCONFDIR/psconfig.csh
     9  /bin/csh -f $PSCONFDIR/psconfig.csh
    1010  return 0
    1111fi
     
    1717
    1818if [[ "$1" == "--list" ]]; then
    19   /bin/csh $PSCONFDIR/psconfig.csh --list
     19  /bin/csh -f $PSCONFDIR/psconfig.csh --list
    2020  return 0
    2121fi
    2222
    2323version=$1
    24 psconfigure=`/bin/csh $PSCONFDIR/psconfig.csh --psconfigure $version`
    25 psautogen=`/bin/csh $PSCONFDIR/psconfig.csh --psautogen $version`
    26 psperlbuild=`/bin/csh $PSCONFDIR/psconfig.csh --psperlbuild $version`
     24psconfigure=`/bin/csh -f $PSCONFDIR/psconfig.csh --psconfigure $version`
     25psautogen=`/bin/csh -f $PSCONFDIR/psconfig.csh --psautogen $version`
     26psperlbuild=`/bin/csh -f $PSCONFDIR/psconfig.csh --psperlbuild $version`
    2727alias psconfigure=$psconfigure
    2828alias psautogen=$psautogen
     
    3030
    3131# psconfig env variables
    32 export PSCONFDIR=`/bin/csh $PSCONFDIR/psconfig.csh --psconfdir $version`
    33 export PSVERSION=`/bin/csh $PSCONFDIR/psconfig.csh --psversion $version`
     32export PSCONFDIR=`/bin/csh -f $PSCONFDIR/psconfig.csh --psconfdir $version`
     33export PSVERSION=`/bin/csh -f $PSCONFDIR/psconfig.csh --psversion $version`
    3434
    3535# environment variables
    36 export PATH=`/bin/csh $PSCONFDIR/psconfig.csh --path $version`
    37 export ARCH=`/bin/csh $PSCONFDIR/psconfig.csh --arch $version`
    38 export LD_LIBRARY_PATH=`/bin/csh $PSCONFDIR/psconfig.csh --ld_library_path $version`
    39 export PKG_CONFIG_PATH=`/bin/csh $PSCONFDIR/psconfig.csh --pkg_config_path $version`
    40 export ACLOCAL_FLAGS=`/bin/csh $PSCONFDIR/psconfig.csh --aclocal_flags $version`
    41 export PERL5LIB=`/bin/csh $PSCONFDIR/psconfig.csh --perl5lib $version`
     36export PATH=`/bin/csh -f $PSCONFDIR/psconfig.csh --path $version`
     37export ARCH=`/bin/csh -f $PSCONFDIR/psconfig.csh --arch $version`
     38export LD_LIBRARY_PATH=`/bin/csh -f $PSCONFDIR/psconfig.csh --ld_library_path $version`
     39export PKG_CONFIG_PATH=`/bin/csh -f $PSCONFDIR/psconfig.csh --pkg_config_path $version`
     40export ACLOCAL_FLAGS=`/bin/csh -f $PSCONFDIR/psconfig.csh --aclocal_flags $version`
     41export PERL5LIB=`/bin/csh -f $PSCONFDIR/psconfig.csh --perl5lib $version`
Note: See TracChangeset for help on using the changeset viewer.