svn commit: r417435 - in head/ports-mgmt/poudriere-devel: . files
Bryan Drewery
bdrewery at FreeBSD.org
Fri Jun 24 15:53:49 UTC 2016
Author: bdrewery
Date: Fri Jun 24 15:53:47 2016
New Revision: 417435
URL: https://svnweb.freebsd.org/changeset/ports/417435
Log:
Fix debugging that crept in
Added:
head/ports-mgmt/poudriere-devel/files/patch-mkdir-vp (contents, props changed)
Modified:
head/ports-mgmt/poudriere-devel/Makefile
Modified: head/ports-mgmt/poudriere-devel/Makefile
==============================================================================
--- head/ports-mgmt/poudriere-devel/Makefile Fri Jun 24 15:51:06 2016 (r417434)
+++ head/ports-mgmt/poudriere-devel/Makefile Fri Jun 24 15:53:47 2016 (r417435)
@@ -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}/ \
Added: head/ports-mgmt/poudriere-devel/files/patch-mkdir-vp
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/ports-mgmt/poudriere-devel/files/patch-mkdir-vp Fri Jun 24 15:53:47 2016 (r417435)
@@ -0,0 +1,19 @@
+commit e7a21685d30fc183b46cd7c5e0f134ce3a6126fc
+Author: Bryan Drewery <bryan at 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}"
More information about the svn-ports-all
mailing list