IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 5, 2009, 9:11:48 AM (17 years ago)
Author:
Paul Price
Message:

Adding build tools to dependencies. Added '-force build' option to pschecklibs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psconfig/pschecklibs

    r23155 r24068  
    2525    if ($ARGV[0] eq "-force") {
    2626        if (@ARGV < 2) { die "-force must be coupled to a library name\n"; }
    27         $force{lc($ARGV[1])} = 1;
     27        if (lc($ARGV[1]) eq 'build') {
     28            $force{'autoconf'} = 1;
     29            $force{'automake'} = 1;
     30            $force{'libtool'} = 1;
     31            $force{'pkg-config'} = 1;
     32        } else {
     33            $force{lc($ARGV[1])} = 1;
     34        }
    2835        shift; shift; next;
    2936    }
Note: See TracChangeset for help on using the changeset viewer.