svn commit: r417436 - in head/ports-mgmt/poudriere: . files

Bryan Drewery bdrewery at FreeBSD.org
Fri Jun 24 15:54:08 UTC 2016


Author: bdrewery
Date: Fri Jun 24 15:54:07 2016
New Revision: 417436
URL: https://svnweb.freebsd.org/changeset/ports/417436

Log:
  Fix debugging that crept in

Added:
  head/ports-mgmt/poudriere/files/patch-mkdir-vp   (contents, props changed)
Modified:
  head/ports-mgmt/poudriere/Makefile

Modified: head/ports-mgmt/poudriere/Makefile
==============================================================================
--- head/ports-mgmt/poudriere/Makefile	Fri Jun 24 15:53:47 2016	(r417435)
+++ head/ports-mgmt/poudriere/Makefile	Fri Jun 24 15:54:07 2016	(r417436)
@@ -2,7 +2,7 @@
 
 PORTNAME=	poudriere
 DISTVERSION=	3.1.14
-PORTREVISION=	0
+PORTREVISION=	1
 CATEGORIES=	ports-mgmt
 MASTER_SITES=	LOCAL/bdrewery/${PORTNAME}/ \
 		http://mirror.shatow.net/freebsd/${PORTNAME}/ \

Added: head/ports-mgmt/poudriere/files/patch-mkdir-vp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/ports-mgmt/poudriere/files/patch-mkdir-vp	Fri Jun 24 15:54:07 2016	(r417436)
@@ -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-head mailing list