IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 11737


Ignore:
Timestamp:
Feb 9, 2007, 1:22:38 PM (19 years ago)
Author:
eugene
Message:

updates

Location:
trunk/psconfig
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psconfig/mkbuild

    r11730 r11737  
    7272    }
    7373
    74     $path = `csh psconfig.sh --path $version`;
    75     $ldpath = `csh psconfig.sh --ldpath $version`;
    76     $pkgpath = `csh psconfig.sh --pkgpath $version`;
    77     $perlpath = `csh psconfig.sh --perlpath $version`;
    78 
    79    
    80 
    81 
    82     alias  psconfigure configure --prefix={$PSCONFDIR}/{$PSCONFIG} --bindir=$bindir --libdir=$libdir --includedir={$PSCONFDIR}/{$PSCONFIG}/include --sysconfdir={$PSCONFDIR}/{$PSCONFIG}/etc --datadir={$PSCONFDIR}/share --mandir={$PSCONFDIR}/man
    83         alias  psautogen autogen.sh --bindir=$bindir --libdir=$libdir --mandir=$mandir --includedir={$PSCONFDIR}/{$PSCONFIG}/include --sysconfdir={$PSCONFDIR}/{$PSCONFIG}/etc --datadir={$PSCONFDIR}/share
    84   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
    85 
    86     system ("env");
     74    $psconfigure = `csh psconfig.sh --psconfigure $version`;
     75    $psautogen   = `csh psconfig.sh --psautogen $version`;
     76    $psperlbuild = `csh psconfig.sh --psperlbuild $version`;
     77
     78    # alias  psconfigure configure --prefix={$PSCONFDIR}/{$PSCONFIG} --bindir=$bindir --libdir=$libdir --includedir={$PSCONFDIR}/{$PSCONFIG}/include --sysconfdir={$PSCONFDIR}/{$PSCONFIG}/etc --datadir={$PSCONFDIR}/share --mandir={$PSCONFDIR}/man
     79    # alias  psautogen autogen.sh --bindir=$bindir --libdir=$libdir --mandir=$mandir --includedir={$PSCONFDIR}/{$PSCONFIG}/include --sysconfdir={$PSCONFDIR}/{$PSCONFIG}/etc --datadir={$PSCONFDIR}/share
     80    # 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
     81
     82    print "psconfigure: $psconfigure\n";
     83    print "psautogen: $psautogen\n";
     84    print "psperlbuild: $psperlbuild\n";
     85
    8786    exit 1;
    8887
  • trunk/psconfig/psconfig.sh

    r11730 r11737  
    281281
    282282# 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 
     283if ($show_configure) then
     284  alias psconfigure
     285  exit 0
     286endif
     287
     288# list the defined psconfig versions
     289if ($show_autogen) then
     290  alias psautogen
     291  exit 0
     292endif
     293
     294# list the defined psconfig versions
     295if ($show_perlbuild) then
     296  alias psperlbuild
     297  exit 0
     298endif
Note: See TracChangeset for help on using the changeset viewer.