diff options
author | rillig <rillig@pkgsrc.org> | 2006-08-01 06:10:44 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-08-01 06:10:44 +0000 |
commit | 9aefe26fce9e330f05be81a311d43d231132025e (patch) | |
tree | 270fcca7186e644ba2593626ae6524f9ea032fda /mk/bulk | |
parent | e888cd24c2a86ce3b73717341311c00c9d8c4abe (diff) | |
download | pkgsrc-9aefe26fce9e330f05be81a311d43d231132025e.tar.gz |
Oops, fixed a typo and tested it again. Now it works.
Diffstat (limited to 'mk/bulk')
-rw-r--r-- | mk/bulk/sort-packages | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/bulk/sort-packages b/mk/bulk/sort-packages index b823c112934..4fe54851c37 100644 --- a/mk/bulk/sort-packages +++ b/mk/bulk/sort-packages @@ -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 @@ set -eu : ${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 @@ newline=" 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 |