IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 18977


Ignore:
Timestamp:
Aug 8, 2008, 3:12:17 PM (18 years ago)
Author:
Paul Price
Message:

Merging Sebastian's tree: added '-f' to all csh calls to make startup faster and avoid timeouts of 'controller host add' in pantasks.

Location:
trunk/psconfig
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psconfig/INSTALL

    r17404 r18977  
    4545    if [ -f /home/kiawe/eugene/psconfig/psconfig.csh ]; then
    4646      alias psconfig='source /home/kiawe/eugene/psconfig/psconfig.bash'
     47      # In bash, can't use an alias in the same file that defines it, so need to
     48      # expand it here explicitly to make 'controller host add' work in pantasks
     49      source /home/kiawe/eugene/psconfig/psconfig.bash default
    4750    else
    4851      alias psconfig='echo psconfig not available'
    4952    fi
    50     psconfig default
     53   
    5154
    5255Though, in your case, "/home/kiawe/eugene/psconfig/" will be replaced
     
    8891at:
    8992
    90 http://pan-starrs.ifa.hawaii.edu/project/IPP/software/extlibs-2.5.tgz
    91 http://pan-starrs.ifa.hawaii.edu/project/IPP/software/extperl-2.5.tgz
     93http://pan-starrs.ifa.hawaii.edu/project/IPP/software/extlibs-2.6.1.tgz
     94http://pan-starrs.ifa.hawaii.edu/project/IPP/software/extperl-2.6.1.tgz
    9295
    9396These should be installed so they will be available in the user's
     
    103106Perl modules, and can be used to install them in the appropriate user
    104107location in the psconfig system.  The command defaults to the latest
    105 perl installation table (eg, tagsets/ipp-2.5.perl).
     108perl installation table (eg, tagsets/ipp-2.6.1.perl).
    106109
    107110pscheckperl
     
    135138external libraries and perl modules from:
    136139
    137 http://pan-starrs.ifa.hawaii.edu/project/IPP/software/extlibs-2.5.tgz
    138 http://pan-starrs.ifa.hawaii.edu/project/IPP/software/extperl-2.5.tgz
     140http://pan-starrs.ifa.hawaii.edu/project/IPP/software/extlibs-2.6.1.tgz
     141http://pan-starrs.ifa.hawaii.edu/project/IPP/software/extperl-2.6.1.tgz
    139142
    140143It should be possible to build the full IPP installation by issuing
  • trunk/psconfig/psconfig.bash.in

    r16124 r18977  
    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.