Changeset 12649 in hybrid for branches/releng-10/nanobsd/tools


Ignore:
Timestamp:
Jan 24, 2014, 1:42:11 PM (11 years ago)
Author:
huub
Message:

pkg info command ipv pkg_info in 10.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/releng-10/nanobsd/tools/package-build.sh

    r12557 r12649  
    2929p_info Checking whether there are currently unmet dependencies
    3030RETVAL=0
    31 PKGS=`pkg_info | awk '{print $1}'`
     31PKGS=`pkg info | awk '{print $1}'`
    3232for PKG in ${PKGS} ; do
    3333  PKG_DEP_FAIL=""
    34   for PKGDEP in `pkg_info -qr ${PKG} | awk '{print $2}'`; do
    35     pkg_info -e ${PKGDEP}
     34  for PKGDEP in `pkg info -qr ${PKG} | awk '{print $2}'`; do
     35    pkg info -e ${PKGDEP}
    3636    if [ $? -eq 1 ]; then
    3737      PKG_DEP_FAIL="${PKG_DEP_FAIL} ${PKGDEP}"
Note: See TracChangeset for help on using the changeset viewer.