Changeset 12142
- Timestamp:
- Mar 1, 2007, 11:14:21 AM (19 years ago)
- Location:
- trunk/psconfig
- Files:
-
- 4 added
- 7 deleted
- 3 edited
-
ckperlmods (deleted)
-
mkbuild (deleted)
-
mkdist (deleted)
-
psbuild (modified) (2 diffs)
-
pschecklibs (added)
-
pscheckperl (added)
-
psconfig.sh (modified) (3 diffs)
-
psdist (modified) (2 diffs)
-
pstag (deleted)
-
tagsets/ipp-1.0.build (deleted)
-
tagsets/ipp-1.0.dist (added)
-
tagsets/ipp-1.0.dst (deleted)
-
tagsets/ipp-1.0.perl (added)
-
tagsets/ipp-extperl.dst (deleted)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psconfig/psbuild
r12136 r12142 186 186 187 187 sub list_distributions { 188 @list = <$tagsets/*.d st>;188 @list = <$tagsets/*.dist>; 189 189 foreach $line (@list) { 190 190 chomp $line; 191 ($dist) = $line =~ m|$tagsets/(\S*).d st|;191 ($dist) = $line =~ m|$tagsets/(\S*).dist|; 192 192 print STDERR "$dist\n"; 193 193 } … … 198 198 # open and read the distribution file 199 199 # results go into @cvsname, @branchtag, @branchver, @mode 200 $file = "$tagsets/$ARGV[0].d st";200 $file = "$tagsets/$ARGV[0].dist"; 201 201 open (FILE, $file) || die "ERROR: can't open distribution file $file\n"; 202 202 @list = <FILE>; -
trunk/psconfig/psconfig.sh
r12134 r12142 8 8 set show_arch = 0 9 9 set show_path = 0 10 set show_include = 0 10 11 set show_configure = 0 11 12 set show_autogen = 0 … … 35 36 set show_bin = 1 36 37 breaksw 38 case --include 39 set show_include = 1 40 breaksw 37 41 case --psconfigure: 38 42 set show_configure = 1 … … 306 310 exit 0 307 311 endif 312 if ($show_include) then 313 echo $PSCONFDIR/$PSVERSION.$ARCH/include 314 exit 0 315 endif 308 316 309 317 # list the defined psconfig versions -
trunk/psconfig/psdist
r12136 r12142 212 212 213 213 sub list_distributions { 214 @list = <$tagsets/*.d st>;214 @list = <$tagsets/*.dist>; 215 215 foreach $line (@list) { 216 216 chomp $line; 217 ($dist) = $line =~ m|$tagsets/(\S*).d st|;217 ($dist) = $line =~ m|$tagsets/(\S*).dist|; 218 218 print STDERR "$dist\n"; 219 219 } … … 224 224 # open and read the distribution file 225 225 # results go into @cvsname, @branchtag, @branchver, @mode 226 $file = "$tagsets/$ARGV[0].d st";226 $file = "$tagsets/$ARGV[0].dist"; 227 227 open (FILE, $file) || die "ERROR: can't open distribution file $file\n"; 228 228 @list = <FILE>;
Note:
See TracChangeset
for help on using the changeset viewer.
