Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/freebsd/poudriere.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2012-02-02 16:47:54 +0400
committerBaptiste Daroussin <bapt@FreeBSD.org>2012-02-02 16:47:54 +0400
commit7fb7433e5b376294f994d4cae7061d6de1a56cd8 (patch)
tree27d08c548691a6dc27ebbaebdabe09ab62cd0ae9
parent7b039f344382cdd9a7f7c9c9b32921e3484b4c9b (diff)
pkg is in localbase try to get it from path1.1
-rwxr-xr-xsrc/poudriere.d/test_ports.sh22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/poudriere.d/test_ports.sh b/src/poudriere.d/test_ports.sh
index 7b2715fc..98ec83a6 100755
--- a/src/poudriere.d/test_ports.sh
+++ b/src/poudriere.d/test_ports.sh
@@ -25,7 +25,7 @@ build_port() {
if [ "${PHASE}" = "deinstall" ]; then
if [ ${PKGNG} -ne 1 ]; then
msg "Checking pkg_info"
- injail /usr/sbin/pkg_info ${PKGNAME}
+ injail pkg_info ${PKGNAME}
PLIST="/var/db/pkg/${PKGNAME}/+CONTENTS"
if [ -r ${JAILBASE}${PLIST} ]; then
echo "===>> Checking shared library dependencies"
@@ -37,9 +37,9 @@ build_port() {
fi
else
msg "Checking pkg_info"
- injail /usr/sbin/pkg info ${PKGNAME}
+ injail pkg info ${PKGNAME}
echo "===>> Checking shared library dependencies"
- injail /usr/sbin/pkg query "%Fp" ${PKGNAME} | \
+ injail pkg query "%Fp" ${PKGNAME} | \
xargs injail ldd 2>&1 | \
grep -v "not a dynamic executable" | \
grep '=>' | awk '{ print $3;}' | sort -u
@@ -54,15 +54,15 @@ build_port() {
create_pkg() {
msg "$1" | tee -a ${LOGS}/${PKGNAME}-${JAILNAME}.depends.log
- PKGINFO="/usr/sbin/pkg_info -Ea"
- [ ${PKGNG} -eq 1 ] && PKGINFO="/usr/sbin/pkg info -qa"
+ PKGINFO="pkg_info -Ea"
+ [ ${PKGNG} -eq 1 ] && PKGINFO="pkg info -qa"
for pkg in `injail ${PKGINFO}`; do
if [ ! -f ${PKGDIR}/All/${pkg}.${EXT} ]; then
if [ ${PKGNG} -ne 1 ]; then
- injail /usr/sbin/pkg_create -b ${pkg} \
+ injail pkg_create -b ${pkg} \
/usr/ports/packages/All/${pkg}.tbz
else
- injail /usr/sbin/pkg create ${pkg} -o \
+ injail pkg create ${pkg} -o \
/usr/ports/packages/All/
fi
fi
@@ -76,8 +76,8 @@ CONFIGSTR=0
NOPREFIX=0
PTNAME="default"
EXT="tbz"
-PKG_ADD=/usr/sbin/pkg_add
-PKG_DELETE=/usr/sbin/pkg_delete
+PKG_ADD=pkg_add
+PKG_DELETE=pkg_delete
while getopts "d:o:cnj:p:" FLAG; do
case "${FLAG}" in
@@ -136,8 +136,8 @@ for JAILNAME in ${JAILNAMES}; do
grep -q WITH_PKGNG ${JAILBASE}/etc/make.conf && PKGNG=1
if [ ${PKGNG} -eq 1 ]; then
EXT=txz
- PKG_ADD="/usr/sbin/pkg add"
- PKG_DELETE="/usr/sbin/pkg delete -y -f"
+ PKG_ADD="pkg add"
+ PKG_DELETE="pkg delete -y -f"
fi
if [ -z ${ORIGIN} ]; then