svn commit: r243204 - projects/portbuild/scripts
Mark Linimon
linimon at FreeBSD.org
Sun Nov 18 03:02:04 UTC 2012
Author: linimon (doc,ports committer)
Date: Sun Nov 18 03:02:03 2012
New Revision: 243204
URL: http://svnweb.freebsd.org/changeset/base/243204
Log:
Still hunting down some vestiges of CVS assumptions.
Modified:
projects/portbuild/scripts/dopackages
projects/portbuild/scripts/makeworld
Modified: projects/portbuild/scripts/dopackages
==============================================================================
--- projects/portbuild/scripts/dopackages Sat Nov 17 23:53:12 2012 (r243203)
+++ projects/portbuild/scripts/dopackages Sun Nov 18 03:02:03 2012 (r243204)
@@ -30,9 +30,9 @@ usage () {
echo " -nochecksubdirs : Do not check the SUBDIRS"
echo " -norestr : Do not build the restricted.sh file"
echo " -nosrc : Do not update the src tree"
- echo " -srcvcs : Update the src tree via CVS, don't use a pre-existing snapshot"
+ echo " -srcvcs : Update the src tree via ${VCS}, don't use a pre-existing snapshot"
echo " -noports : Do not update the ports tree"
- echo " -portsvcs : Update the ports tree via CVS, don't use a pre-existing snapshot"
+ echo " -portsvcs : Update the ports tree via ${VCS}, don't use a pre-existing snapshot"
echo " -noplistcheck : Don't check the plist during the build"
echo " -nodistfiles : Don't collect distfiles"
echo " -fetch-original : Fetch from original MASTER_SITE"
@@ -482,6 +482,7 @@ if [ "$skipstart" = 0 ]; then
cd ${PORTSDIR}
updated=$(date '+%Y/%m/%d %H:%M')
echo ${updated} > ${builddir}/.updated
+ # XXX MCL 20121117 this is not right!
${VCS} ${VCS_UPDATE_DATE} "${updated}"
# XXX Check for conflicts
else
Modified: projects/portbuild/scripts/makeworld
==============================================================================
--- projects/portbuild/scripts/makeworld Sat Nov 17 23:53:12 2012 (r243203)
+++ projects/portbuild/scripts/makeworld Sun Nov 18 03:02:03 2012 (r243204)
@@ -95,6 +95,7 @@ cd ${SRC_BASE} || exit $?
if [ "$novcs" = "0" ]; then
echo "==> Updating source tree"
eval tag=\$SRC_BRANCH_${branch}_TAG
+ # XXX MCL 20121117 this is not right!
${VCS} ${VCS_UPDATE_TAG} ${tag} || exit $?
fi
More information about the svn-src-projects
mailing list