1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-21 04:06:46 +00:00

Fix debugging that crept in

This commit is contained in:
Bryan Drewery 2016-06-24 15:53:47 +00:00
parent f456be1f91
commit 5efb37b46b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=417435
2 changed files with 20 additions and 1 deletions

View File

@ -2,7 +2,7 @@
PORTNAME= poudriere
DISTVERSION= 3.1.99.20160624
PORTREVISION= 0
PORTREVISION= 1
CATEGORIES= ports-mgmt
MASTER_SITES= LOCAL/bdrewery/${PORTNAME}/ \
http://mirror.shatow.net/freebsd/${PORTNAME}/ \

View File

@ -0,0 +1,19 @@
commit e7a21685d30fc183b46cd7c5e0f134ce3a6126fc
Author: Bryan Drewery <bryan@shatow.net>
Date: Fri Jun 24 08:52:08 2016 -0700
Don't use -v for mkdir
diff --git src/share/poudriere/common.sh src/share/poudriere/common.sh
index 00eecca..75c02b7 100755
--- src/share/poudriere/common.sh
+++ src/share/poudriere/common.sh
@@ -1179,7 +1179,7 @@ do_jail_mounts() {
fi
echo ${nullpaths} | tr ' ' '\n' | sed -e "s,^/,${mnt}/," | \
- xargs mkdir -vp
+ xargs mkdir -p
for nullpath in ${nullpaths}; do
[ -d "${from}${nullpath}" -a "${from}" != "${mnt}" ] && \
${NULLMOUNT} -o ro "${from}${nullpath}" "${mnt}${nullpath}"