svn commit: r241451 - head/release

Ed Maste emaste at FreeBSD.org
Thu Oct 11 18:41:33 UTC 2012


Author: emaste
Date: Thu Oct 11 18:41:32 2012
New Revision: 241451
URL: http://svn.freebsd.org/changeset/base/241451

Log:
  Exclude potential circular symlink when creating src tarball.
  
  Normal release builds are not affected by this but it can happen if using
  these release bits against a work tree.
  
  Sponsored by: ADARA Networks

Modified:
  head/release/Makefile

Modified: head/release/Makefile
==============================================================================
--- head/release/Makefile	Thu Oct 11 18:11:38 2012	(r241450)
+++ head/release/Makefile	Thu Oct 11 18:41:32 2012	(r241451)
@@ -84,7 +84,7 @@ src.txz:
 	mkdir -p ${DISTDIR}/usr
 	ln -fs ${WORLDDIR} ${DISTDIR}/usr/src
 	cd ${DISTDIR} && tar cLvJf ${.OBJDIR}/src.txz --exclude .svn \
-	    --exclude CVS usr/src
+	    --exclude CVS --exclude @ usr/src
 
 ports.txz:
 	mkdir -p ${DISTDIR}/usr


More information about the svn-src-head mailing list