svn commit: r242388 - stable/9/release

Glen Barber gjb at FreeBSD.org
Wed Oct 31 04:07:52 UTC 2012


Author: gjb (doc,ports committer)
Date: Wed Oct 31 04:07:52 2012
New Revision: 242388
URL: http://svn.freebsd.org/changeset/base/242388

Log:
  MFC r241451, r241596:
  
  r241451 (emaste):
  - 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.
  
  r241596 (emaste):
  - Exclude potential circular symlink
  
  - This does not occur with normal release builds but can happen when
    reusing these release parts for other purposes.
  
  Approved by:	emaste

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

Modified: stable/9/release/Makefile
==============================================================================
--- stable/9/release/Makefile	Wed Oct 31 03:55:33 2012	(r242387)
+++ stable/9/release/Makefile	Wed Oct 31 04:07:52 2012	(r242388)
@@ -81,7 +81,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 @ --exclude usr/src/release/dist usr/src
 
 ports.txz:
 	-mkdir -p ${DISTDIR}/usr


More information about the svn-src-all mailing list