RPM Package Manager, CVS Repository
http://rpm5.org/cvs/
____________________________________________________________________________
Server: rpm5.org Name: Ralf S. Engelschall
Root: /v/rpm/cvs Email: rse@rpm5.org
Module: rpm Date: 23-Jul-2007 21:07:29
Branch: HEAD Handle: 2007072320072900
Modified files:
rpm devtool.conf
Log:
I intermixed the global -d with the local -d option in Jeff's error
report. Only the global one is not necessary, the local one is, of
course
Summary:
Revision Changes Path
2.62 +2 -2 rpm/devtool.conf
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: rpm/devtool.conf
============================================================================
$ cvs diff -u -r2.61 -r2.62 devtool.conf
--- rpm/devtool.conf 23 Jul 2007 18:16:45 -0000 2.61
+++ rpm/devtool.conf 23 Jul 2007 19:07:29 -0000 2.62
@@ -16,7 +16,7 @@
if [ ".${release}" = . ]; then
if [ -d ${DEVTOOL_SRCDIR}/${name}/CVS ]; then
echo "===> ${name} (cvs up HEAD)"
- ( cd ${DEVTOOL_SRCDIR}/${name} && cvs up -A -P )
+ ( cd ${DEVTOOL_SRCDIR}/${name} && cvs up -A -P -d )
else
echo "===> ${name} (cvs co HEAD)"
( cd ${DEVTOOL_SRCDIR} && cvs co -A -d ${name} ${name} )
@@ -24,7 +24,7 @@
else
if [ -d ${DEVTOOL_SRCDIR}/${name}/CVS ]; then
echo "===> ${name} (cvs up ${release})"
- ( cd ${DEVTOOL_SRCDIR}/${name} && cvs up -P -r${release} )
+ ( cd ${DEVTOOL_SRCDIR}/${name} && cvs up -P -d -r${release} )
else
echo "===> ${name} (cvs co ${release})"
( cd ${DEVTOOL_SRCDIR} && cvs co -r${release} -d ${name} ${name} )
@@ .
Received on Mon Jul 23 21:07:29 2007