pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mk/bulk Oops, fixed a typo and tested it again. Now it...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9740fea01915
branches:  trunk
changeset: 516927:9740fea01915
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Tue Aug 01 06:10:44 2006 +0000

description:
Oops, fixed a typo and tested it again. Now it works.

diffstat:

 mk/bulk/sort-packages |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (28 lines):

diff -r da5b60438681 -r 9740fea01915 mk/bulk/sort-packages
--- a/mk/bulk/sort-packages     Tue Aug 01 06:05:15 2006 +0000
+++ b/mk/bulk/sort-packages     Tue Aug 01 06:10:44 2006 +0000
@@ -1,5 +1,5 @@
 #! /bin/sh
-# $NetBSD: sort-packages,v 1.1 2006/08/01 06:05:15 rillig Exp $
+# $NetBSD: sort-packages,v 1.2 2006/08/01 06:10:44 rillig Exp $
 
 # This program scans all binary packages in the current directory and
 # creates three lists of files in OUTDIR:
@@ -20,7 +20,7 @@
 : ${OUTDIR="/tmp"}
 : ${PKG_SUFX=".tgz"}
 : ${AUDIT_PACKAGES="audit-packages"}
-: ${PKG_INFO_CMD="pkg_info"}
+: ${PKG_INFO="pkg_info"}
 
 regular_packages="${OUTDIR}/regular_packages"
 restricted_packages="${OUTDIR}/restricted_packages"
@@ -31,7 +31,7 @@
 rm -f "${regular_packages}" "${restricted_packages}" "${vulnerable_packages}"
 
 for pkg in *${PKG_SUFX}; do
-       build_info=`${pkg_info_cmd} -B "${pkg}"`
+       build_info=`${PKG_INFO} -B "${pkg}"`
 
        # Note: this code needs to be that complicated because licensing
        # issues are critical to pkgsrc, and we really don't want



Home | Main Index | Thread Index | Old Index