2006-05-11 14:36:16 +02:00
|
|
|
source $stdenv/setup
|
|
|
|
|
2007-11-11 09:16:23 +01:00
|
|
|
if test -z "$tag"; then
|
|
|
|
tag="-DNOW"
|
2006-05-11 14:36:16 +02:00
|
|
|
fi
|
2007-11-11 09:16:23 +01:00
|
|
|
# creating the export drictory and checking out there only to be able to
|
|
|
|
# move the content without the root directory into $out ...
|
|
|
|
# cvs -f -d "$url" export $tag -d "$out" "$module"
|
|
|
|
# should work (but didn't - got no response on #cvs)
|
|
|
|
# See als man Page for those options
|
2006-05-11 14:36:16 +02:00
|
|
|
|
2007-11-11 09:16:23 +01:00
|
|
|
ensureDir $out export
|
|
|
|
cd export; cvs -f -d "$url" export $tag "$module"
|
|
|
|
mv */* $out
|
2006-05-11 14:36:16 +02:00
|
|
|
|
|
|
|
stopNest
|