IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 35113 for trunk/psconfig


Ignore:
Timestamp:
Feb 7, 2013, 1:29:53 PM (13 years ago)
Author:
bills
Message:

psconfig.bash was not setting the PSCONFIG environment variable.
This made it unavailble for use in .ipprc. Fixed that

Location:
trunk/psconfig
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psconfig/psconfig.bash.in

    r31162 r35113  
    3030# psconfig env variables
    3131export PSCONFDIR=`/bin/csh -f $PSCONFDIR/psconfig.csh --psconfdir $version`
     32export PSCONFIG=`/bin/csh -f $PSCONFDIR/psconfig.csh --psconfig $version`
    3233export PSVERSION=`/bin/csh -f $PSCONFDIR/psconfig.csh --psversion $version`
    3334
  • trunk/psconfig/psconfig.csh.in

    r34253 r35113  
    1818set show_psversion = 0
    1919set show_psconfdir = 0
     20set show_psconfig = 0
    2021set show_library_path = 0
    2122set show_ld_library_path = 0
     
    6869      set show_psconfdir = 1
    6970      breaksw;
     71    case --psconfig
     72      set show_psconfig = 1
     73      breaksw;
    7074    case --ld_library_path
    7175      set show_ld_library_path = 1
     
    501505if ($show_psconfdir) then
    502506  echo $PSCONFDIR
     507  exit 0
     508endif
     509
     510if ($show_psconfig) then
     511  echo $PSCONFIG
    503512  exit 0
    504513endif
Note: See TracChangeset for help on using the changeset viewer.