svn commit: r243923 - stable/9/release

Glen Barber gjb at FreeBSD.org
Thu Dec 6 00:25:42 UTC 2012


Author: gjb (doc,ports committer)
Date: Thu Dec  6 00:25:42 2012
New Revision: 243923
URL: http://svnweb.freebsd.org/changeset/base/243923

Log:
  MFC r242897:
   Prevent including .zfs snapshot directories in the src.txz
   distribution.  This can happen if the src/ tree checkout is
   within its own ZFS dataset, and the 'snapdir' ZFS property
   is set to 'visible.'

Modified:
  stable/9/release/Makefile
Directory Properties:
  stable/9/release/   (props changed)

Modified: stable/9/release/Makefile
==============================================================================
--- stable/9/release/Makefile	Thu Dec  6 00:17:25 2012	(r243922)
+++ stable/9/release/Makefile	Thu Dec  6 00:25:42 2012	(r243923)
@@ -80,7 +80,7 @@ kernel.txz:
 src.txz:
 	-mkdir -p ${DISTDIR}/usr
 	ln -fs ${WORLDDIR} ${DISTDIR}/usr/src
-	cd ${DISTDIR} && tar cLvJf ${.OBJDIR}/src.txz --exclude .svn \
+	cd ${DISTDIR} && tar cLvJf ${.OBJDIR}/src.txz --exclude .svn --exclude .zfs \
 	    --exclude CVS --exclude @ --exclude usr/src/release/dist usr/src
 
 ports.txz:


More information about the svn-src-stable-9 mailing list