audit-packages logic for its location depends on a variety of factors
including OS, pkg_install version and NetBSD version. The following should pick the correct version to run.
This commit is contained in:
parent
c815c4cb32
commit
b919017b3c
1 changed files with 19 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: flavor-vars.mk,v 1.4 2007/08/02 18:19:32 joerg Exp $
|
||||
# $NetBSD: flavor-vars.mk,v 1.5 2007/12/16 01:49:08 adrianp Exp $
|
||||
#
|
||||
# This Makefile fragment is included indirectly by bsd.prefs.mk and
|
||||
# defines some variables which must be defined earlier than where
|
||||
|
@ -40,6 +40,24 @@ PKGTOOLS_VERSION!= ${PKG_INFO_CMD} -V 2>/dev/null || echo 20010302
|
|||
MAKEFLAGS+= PKGTOOLS_VERSION=${PKGTOOLS_VERSION}
|
||||
.endif
|
||||
|
||||
# audit-packages logic for its location depends on a variety of factors
|
||||
# including OS, pkg_install version and NetBSD version. The following
|
||||
# should pick the correct version to run.
|
||||
#
|
||||
.if defined(OPSYS) && ${OPSYS} != "NetBSD"
|
||||
AP?= ${PKG_TOOLS_BIN}/audit-packages
|
||||
.else
|
||||
. if exists(${LOCALBASE}/sbin/audit-packages)
|
||||
AP?= ${LOCALBASE}/sbin/audit-packages
|
||||
. else
|
||||
. if exists(/usr/sbin/audit-packages)
|
||||
AP?= /usr/sbin/audit-packages
|
||||
. else
|
||||
AP?= audit-packages
|
||||
. endif
|
||||
. endif
|
||||
.endif
|
||||
|
||||
# The binary pkg_install tools all need to consistently to refer to the
|
||||
# correct package database directory.
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue