--Boundary-00=_Lr+jAYDGifBjyrs Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline I had to apply the attached patch to get cvs2dist to fetch i18n stuff. I'm calling cvs2dist without specifying a --branch, and my cvs (version 1.12.5) does not like being told to checkout a module called "". =) cheers, nate -- Make sure your vote will count. http://www.verifiedvoting.org/ --Boundary-00=_Lr+jAYDGifBjyrs Content-Type: text/x-diff; charset="us-ascii"; name="cvs2dist-000-fix.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="cvs2dist-000-fix.patch" Index: kdesdk/scripts/cvs2dist =================================================================== RCS file: /home/kde/kdesdk/scripts/cvs2dist,v retrieving revision 1.9 diff -u -3 -p -r1.9 cvs2dist --- kdesdk/scripts/cvs2dist 9 Apr 2004 16:15:13 -0000 1.9 +++ kdesdk/scripts/cvs2dist 28 Apr 2004 17:13:25 -0000 @@ -295,7 +295,7 @@ remove="$remove $modulename.lsm" if [ $doi18n = "yes" ]; then pushd $temp_dir echo "cvs co kde-i18n/subdirs" >> $log - cvs -z4 -q -d "$cvsroot" co "$branch" -P kde-i18n/subdirs > /dev/null 2>&1 + cvs -z4 -q -d "$cvsroot" co $branch -P kde-i18n/subdirs > /dev/null 2>&1 i18nlangs="$(cat kde-i18n/subdirs)" echo "available languages: $i18nlangs" >> $log popd @@ -313,7 +313,7 @@ if [ -d $module/doc/$name ]; then test -d $temp_dist/doc/$lang && rm -Rf $temp_dist/doc/$lang docdirname="kde-i18n/$lang/docs/$modulename/$name" echo "cvs co $docdirname" >> $log - cvs -z4 -q -d "$cvsroot" co "$branch" -P "$docdirname" > /dev/null 2>&1 + cvs -z4 -q -d "$cvsroot" co $branch -P "$docdirname" > /dev/null 2>&1 if [ ! -d "$docdirname" ]; then echo "$lang's $name documentation does not exist." >> $log continue @@ -353,7 +353,7 @@ if [ $doi18n = "yes" ]; then for lang in $i18nlangs; do pofilename="kde-i18n/$lang/messages/$modulename/$name.po"; echo "cvs co $pofilename" >> $log - cvs -z4 -q -d "$cvsroot" co "$branch" -P "$pofilename" > /dev/null 2>&1 + cvs -z4 -q -d "$cvsroot" co $branch -P "$pofilename" > /dev/null 2>&1 if [ ! -f "$pofilename" ]; then echo "$lang's $name.po does not exist." >> $log continue --Boundary-00=_Lr+jAYDGifBjyrs Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline >> Visit http://mail.kde.org/mailman/listinfo/kde-devel#unsub to unsubscribe << --Boundary-00=_Lr+jAYDGifBjyrs--