This is the mail archive of the gdb@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Question about "cvs update"


On Mon, Oct 11, 2010 at 03:49:56PM +0800, Hui Zhu wrote:
>Hi guys,
>
>"cvs update -d" will make the src directory include a lot of other
>softwares like binutils, sid and so on.
>
>I want keep the directory just have the file of GDB.  I tried "cvs
>update -dP".  But it still tried to checkout the files of other
>softwares.
>
>Could someone tell me how to update the all src directory and do not
>co the files of other softwares.

cvs update -l
for f in */.; do
  (cd $f && exec cvs update -d)
done

cgf


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]