Changeset 11058
- Timestamp:
- Jan 11, 2007, 5:22:13 PM (19 years ago)
- Location:
- trunk/psconfig
- Files:
-
- 3 edited
-
psbuild (modified) (5 diffs)
-
psconfig.sh (modified) (4 diffs)
-
tagsets/ippHead (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psconfig/psbuild
r10869 r11058 1 #!/bin/ tcsh1 #!/bin/csh 2 2 3 3 set args="" … … 7 7 set optimize=0 8 8 set version="" 9 set start="" 9 10 while ($#argv) 10 11 switch ($1) … … 26 27 set optimize=1; 27 28 breaksw; 29 case -start: 30 shift 31 set start=$1; 32 breaksw; 28 33 default: 29 34 set args=($args $1); … … 44 49 endif 45 50 51 # set the version based on psconfig or -version (if set) 46 52 if ("$version" != "") then 47 53 source psconfig.sh $version 48 endif 49 50 if (! $?PSVERSION) then 51 source psconfig.sh default 54 else 55 if (! $?PSVERSION) then 56 source psconfig.sh default 57 else 58 source psconfig.sh $PSVERSION 59 endif 52 60 endif 53 61 … … 59 67 set dir = $name[1] 60 68 set tag = $name[2] 69 70 if ("$start" != "") then 71 if ("$start" != "$dir") then 72 echo "skipping $dir" 73 continue 74 endif 75 set start = "" 76 endif 61 77 62 78 set current = `pwd` -
trunk/psconfig/psconfig.sh
r10869 r11058 43 43 44 44 # make this configurable by the user 45 set PSCONFDIR ={$HOME}/psconfig46 set PSVERSION =default45 setenv PSCONFDIR {$HOME}/psconfig 46 setenv PSVERSION default 47 47 48 48 if (-e $HOME/.psconfigrc) then … … 50 50 endif 51 51 52 set PSVERSION =$argv[1]52 setenv PSVERSION $argv[1] 53 53 54 54 if ($?LD_LIBRARY_PATH == 0) setenv LD_LIBRARY_PATH … … 113 113 endsw 114 114 115 set PSCONFIG =$PSVERSION.$ARCH115 setenv PSCONFIG $PSVERSION.$ARCH 116 116 117 117 set newpath = "" … … 217 217 alias psconfigure configure --prefix={$PSCONFDIR}/{$PSCONFIG} --bindir=$bindir --libdir=$libdir --includedir={$PSCONFDIR}/{$PSCONFIG}/include --sysconfdir={$PSCONFDIR}/{$PSCONFIG}/etc --datadir={$PSCONFDIR}/share --mandir={$PSCONFDIR}/man 218 218 alias psautogen autogen.sh --bindir=$bindir --libdir=$libdir --includedir={$PSCONFDIR}/{$PSCONFIG}/include --sysconfdir={$PSCONFDIR}/{$PSCONFIG}/etc --datadir={$PSCONFDIR}/share --mandir={$PSCONFDIR}/man 219 alias psperlbuild perl Build.PL -- install_path script=$bindir --install_path arch=$bindir --install_path bin=$bindir --install_path lib=$libdir --install_path bindoc={$PSCONFDIR}/man/man1 --install_path libdoc={$PSCONFDIR}/man/man3220 endif 219 alias psperlbuild perl Build.PL --prefix {$PSCONFDIR}/{$PSCONFIG} --install_path script=$bindir --install_path arch=$bindir --install_path bin=$bindir --install_path lib=$libdir --install_path bindoc={$PSCONFDIR}/man/man1 --install_path libdoc={$PSCONFDIR}/man/man3 220 endif -
trunk/psconfig/tagsets/ippHead
r10562 r11058 17 17 dbconfig:HEAD 18 18 ippdb.src:NONE 19 ippTools /pXtools:HEAD19 ippTools:HEAD
Note:
See TracChangeset
for help on using the changeset viewer.
