svn commit: r278174 - stable/10/release/scripts
Glen Barber
gjb at FreeBSD.org
Wed Feb 4 00:34:13 UTC 2015
Author: gjb
Date: Wed Feb 4 00:34:12 2015
New Revision: 278174
URL: https://svnweb.freebsd.org/changeset/base/278174
Log:
MFC r277837, r277838:
r277837:
Provide a description for the 'tests.txz' distribution
in the MANIFEST file.
Turn off the test suite installation by default.
r277838:
Fix a typo in a comment.
Sponsored by: The FreeBSD Foundation
Modified:
stable/10/release/scripts/make-manifest.sh
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/release/scripts/make-manifest.sh
==============================================================================
--- stable/10/release/scripts/make-manifest.sh Wed Feb 4 00:18:06 2015 (r278173)
+++ stable/10/release/scripts/make-manifest.sh Wed Feb 4 00:34:12 2015 (r278174)
@@ -5,7 +5,7 @@
# Usage: make-manifest.sh foo1.txz foo2.txz ...
#
# The output file looks like this (tab-delimited):
-# foo1.txz SHA256-checksu Number-of-files foo1 Description Install-by-default
+# foo1.txz SHA256-checksum Number-of-files foo1 Description Install-by-default
#
# $FreeBSD$
@@ -17,7 +17,9 @@ desc_games="Games (fortune, etc.)"
desc_lib32="32-bit compatibility libraries"
desc_ports="Ports tree"
desc_src="System source code"
+desc_tests="Test suite"
src_default=off
+tests_default=off
for i in $*; do
echo "`basename $i` `sha256 -q $i` `tar tvf $i | wc -l | tr -d ' '` `basename $i .txz` \"`eval echo \\\$desc_$(basename $i .txz)`\" `eval echo \\\${$(basename $i .txz)_default:-on}`"
More information about the svn-src-all
mailing list