svn commit: r262516 - projects/release-debugdist

Glen Barber gjb at FreeBSD.org
Wed Feb 26 01:36:03 UTC 2014


Author: gjb
Date: Wed Feb 26 01:36:02 2014
New Revision: 262516
URL: http://svnweb.freebsd.org/changeset/base/262516

Log:
  Rename ${dist}.debug.txz to ${dist}_debug.txz to prevent the following
  output:
  	eval: ${base....}: Bad substitution
  	eval: ${doc....}: Bad substitution
  	eval: ${games....}: Bad substitution
  	eval: ${lib32....}: Bad substitution
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  projects/release-debugdist/Makefile.inc1

Modified: projects/release-debugdist/Makefile.inc1
==============================================================================
--- projects/release-debugdist/Makefile.inc1	Wed Feb 26 01:32:27 2014	(r262515)
+++ projects/release-debugdist/Makefile.inc1	Wed Feb 26 01:36:02 2014	(r262516)
@@ -901,11 +901,11 @@ packageworld:
 . for dist in ${DEBUG_DISTRIBUTIONS}
 .  if defined(NO_ROOT)
 	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
-	    tar cvJf ${DESTDIR}/${DISTDIR}/${dist}.debug.txz \
+	    tar cvJf ${DESTDIR}/${DISTDIR}/${dist}_debug.txz \
 	    @${DESTDIR}/${DISTDIR}/${dist}.debug.meta
 .  else
 	${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
-	    tar cvJfL ${DESTDIR}/${DISTDIR}/${dist}.debug.txz \
+	    tar cvJfL ${DESTDIR}/${DISTDIR}/${dist}_debug.txz \
 	    usr/lib/debug
 .  endif
 . endfor


More information about the svn-src-projects mailing list