Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 18 Nov 2012 03:02:03 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r243204 - projects/portbuild/scripts
Message-ID:  <201211180302.qAI3232B038715@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211180302.qAI3232B038715>