Skip to content
Snippets Groups Projects
Commit 2bfd954d authored by Andreas Dilger's avatar Andreas Dilger
Browse files

Branch v1_6_5

Update the top-level "lustre" module to the specified version/release tag
so that it is not affected by later changes to the files (esp. Makefile.in).
b=16008
i=rread
parent 78057a4d
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,14 @@ EOF
if [ -z "$LUSTRECVS_UPDATED" ] ; then
echo "$progname: updating lustrecvs"
cvs up -l || fatal 1 "Error updating lustrecvs"
# If checking out a specific tag, make sure all of the files here are also
# checked out with the same tag to avoid later changes breaking things.
case "$1" in
v*|b_release_*) TAG=$1 ;;
esac
cvs update -l $TAG
export LUSTRECVS_UPDATED=yes
exec "$0" "$@"
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment