Changeset 19150 for trunk/psconfig/pschecklibs
- Timestamp:
- Aug 21, 2008, 10:49:34 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/psconfig/pschecklibs (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psconfig/pschecklibs
r18707 r19150 10 10 $version = ""; 11 11 $build = 0; 12 $force = "";12 %force; 13 13 @tARGV = (); 14 14 for (; @ARGV > 0; ) { … … 23 23 if ($ARGV[0] eq "-force") { 24 24 if (@ARGV < 2) { die "-force must be coupled to a library name\n"; } 25 $force = $ARGV[1];25 $force{lc($ARGV[1])} = 1; 26 26 shift; shift; next; 27 27 } … … 130 130 if (($use_equals ne "Y") && ($use_equals ne "N")) { die "invalid value for use_equals field\n"; } 131 131 132 if ($force ne "") { 133 if ($force eq $name or (lc($force) eq "all" and lc($tarball) ne "none")) { 134 &buildlib ($name, $tarball, $tardir, $use_equals, $configure_opts, $make_opts, $install_opts); 135 # exit 0; 136 } 132 if ((defined $force{lc($name)} or defined $force{'all'}) and lc($tarball) ne "none") { 133 &buildlib ($name, $tarball, $tardir, $use_equals, $configure_opts, $make_opts, $install_opts); 134 # exit 0; 137 135 next; 138 136 }
Note:
See TracChangeset
for help on using the changeset viewer.
