Changeset 17490
- Timestamp:
- Apr 29, 2008, 7:18:58 AM (18 years ago)
- Location:
- trunk/psconfig
- Files:
-
- 2 edited
-
pschecklibs (modified) (2 diffs)
-
pscheckperl (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psconfig/pschecklibs
r17160 r17490 131 131 132 132 if ($force ne "") { 133 if ($force eq $name ) {133 if ($force eq $name or (lc($force) eq "all" and lc($tarball) ne "none")) { 134 134 &buildlib ($name, $tarball, $tardir, $use_equals, $configure_opts, $make_opts, $install_opts); 135 exit 0;135 # exit 0; 136 136 } 137 137 next; … … 182 182 sub buildlib { 183 183 my ($name, $tarball, $tardir, $use_equals, $configure_opts, $make_opts, $install_opts) = @_; 184 185 if ($name eq "libz") { 186 print "zlib doesn't like psconfigure --- you have to build this yourself."; 187 return 1; 188 } 184 189 185 190 if ($tarball eq "NONE") { -
trunk/psconfig/pscheckperl
r16523 r17490 5 5 $version = ""; 6 6 $build = 0; 7 my %force; # Names of module to force build 7 8 @tARGV = (); 8 9 for (; @ARGV > 0; ) { … … 14 15 $build = 1; 15 16 shift; next; 17 } 18 if ($ARGV[0] eq "-force") { 19 $force{$ARGV[1]} = 1; 20 shift; shift; next; 16 21 } 17 22 if ($ARGV[0] eq "-h") { &usage (); } … … 79 84 80 85 print "$module: missing\n"; 81 if (!$build) {86 unless ($build or defined $force{$module} or defined $force{'all'}) { 82 87 $Nmissing ++; 83 88 push @missing, $module;
Note:
See TracChangeset
for help on using the changeset viewer.
