Changeset 22719 for trunk/psconfig/pschecklibs
- Timestamp:
- Feb 27, 2009, 3:02:26 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/psconfig/pschecklibs (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psconfig/pschecklibs
r22709 r22719 11 11 $version = ""; 12 12 $build = 0; 13 %force; 13 my %force; 14 my %done; # Tarballs that have been processed 14 15 @tARGV = (); 15 16 for (; @ARGV > 0; ) { … … 132 133 133 134 134 if ((defined $force{lc($name)} or defined $force{'all'}) and lc($tarball) ne "none") { 135 if ((defined $force{lc($name)} or defined $force{'all'}) and 136 not defined $done{$tarball} and lc($tarball) ne "none") { 135 137 # remove it for the list so we can check for -force for a library 136 138 # not in the list 137 139 &buildlib ($name, $tarball, $tardir, $configure_opts, $make_opts, $install_opts); 140 $done{$tarball} = 1; 138 141 delete($force{lc($name)}); 139 142 next;
Note:
See TracChangeset
for help on using the changeset viewer.
