Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 11 Oct 2012 18:41:32 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r241451 - head/release
Message-ID:  <201210111841.q9BIfWdk067497@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210111841.q9BIfWdk067497>