aboutsummaryrefslogtreecommitdiff
path: root/release
diff options
context:
space:
mode:
authorGlen Barber <gjb@FreeBSD.org>2014-02-26 00:54:59 +0000
committerGlen Barber <gjb@FreeBSD.org>2014-02-26 00:54:59 +0000
commitaa2e8af3e10b28425726faff82ee4f31e1dc3046 (patch)
tree00faf4e5c9c07285ee8223977d256345903c7a41 /release
parentdc50650607c7298c4d24a3e2e1e8c1fc695d509a (diff)
downloadsrc-aa2e8af3e10b28425726faff82ee4f31e1dc3046.tar.gz
src-aa2e8af3e10b28425726faff82ee4f31e1dc3046.zip
Chase r262505, and remove CVS exclusion from picobsd builds.
Sponsored by: The FreeBSD Foundation
Notes
Notes: svn path=/head/; revision=262507
Diffstat (limited to 'release')
-rwxr-xr-xrelease/picobsd/build/picobsd4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/picobsd/build/picobsd b/release/picobsd/build/picobsd
index 2e3d290bc997..7d4813e096d6 100755
--- a/release/picobsd/build/picobsd
+++ b/release/picobsd/build/picobsd
@@ -475,7 +475,7 @@ populate_floppy_fs() { # OK
for FLOPPY_TREE in ${PICO_TREE}/floppy.tree ${MY_TREE}/floppy.tree \
${MY_TREE}/floppy.tree.${SITE} ; do
if [ -d ${FLOPPY_TREE} ] ; then
- (cd ${FLOPPY_TREE} ; tar -cf - --exclude CVS \
+ (cd ${FLOPPY_TREE} ; tar -cf - \
--exclude .svn ${excl} . ) | \
(cd ${dst} ; tar x${o_tarv}f - )
log "Copied from ${FLOPPY_TREE}"
@@ -733,7 +733,7 @@ populate_mfs_tree() {
for MFS_TREE in ${PICO_TREE}/mfs_tree ${MY_TREE}/mfs_tree ; do
if [ -d ${MFS_TREE} ] ; then
log "Copy ${MFS_TREE} ..."
- (cd ${MFS_TREE} ; tar -cf - --exclude CVS --exclude .svn . ) | \
+ (cd ${MFS_TREE} ; tar -cf - --exclude .svn . ) | \
(cd ${dst} ; tar x${o_tarv}f - )
fi
done