Changeset 11730 for trunk/psconfig/psconfig.sh
- Timestamp:
- Feb 9, 2007, 10:53:32 AM (19 years ago)
- File:
-
- 1 edited
-
trunk/psconfig/psconfig.sh (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psconfig/psconfig.sh
r11267 r11730 31 31 32 32 # list the defined psconfig versions 33 if ("$argv[1]" == "--prefix") then 34 echo $PSCONFDIR/$PSVERSION.$ARCH 35 exit 0 36 endif 37 38 # list the defined psconfig versions 33 39 if ("$argv[1]" == "--libs") then 34 40 echo $PSCONFDIR/$PSVERSION.$ARCH/lib … … 40 46 echo $PSCONFDIR/$PSVERSION.$ARCH/bin 41 47 exit 0 48 endif 49 50 # list the defined psconfig versions 51 set show_path = 0 52 if ("$argv[1]" == "--path") then 53 set show_path = 1 54 shift 55 endif 56 57 # list the defined psconfig versions 58 set show_ldpath = 0 59 if ("$argv[1]" == "--ldpath") then 60 set show_ldpath = 1 61 shift 62 endif 63 64 # list the defined psconfig versions 65 set show_pkgpath = 0 66 if ("$argv[1]" == "--pkgpath") then 67 set show_pkgpath = 1 68 shift 69 endif 70 71 # list the defined psconfig versions 72 set show_perlpath = 0 73 if ("$argv[1]" == "--perlpath") then 74 set show_perlpath = 1 75 shift 42 76 endif 43 77 … … 245 279 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 246 280 endif 281 282 # list the defined psconfig versions 283 if ($show_path) then 284 echo $PATH 285 exit 0 286 endif 287 288 # list the defined psconfig versions 289 if ($show_ldpath) then 290 echo $LD_LIBRARY_PATH 291 exit 0 292 endif 293 294 # list the defined psconfig versions 295 if ($show_pkgpath) then 296 echo $PKG_CONFIG_PATH 297 exit 0 298 endif 299 300 # list the defined psconfig versions 301 if ($show_perlpath) then 302 echo $PERL5LIB 303 exit 0 304 endif 305
Note:
See TracChangeset
for help on using the changeset viewer.
