From 014bd00c323fb73300d711e2df5514a21486a5e3 Mon Sep 17 00:00:00 2001 From: adilger Date: Fri, 12 Aug 2005 19:05:21 +0000 Subject: [PATCH] Branch b1_4 Put only the filenames into the cvs-merge-conflicts file, so that vi `cat cvs-merge-conflicts` works. --- build/land1.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/land1.sh b/build/land1.sh index 6765c37..d3d643e 100755 --- a/build/land1.sh +++ b/build/land1.sh @@ -106,7 +106,8 @@ $CVS update -j ${CHILD}_BASE -j ${PARENT}_${CHILD}_LAND_CHILD_$date $dir echo "done" echo -n "Recording conflicts in $CONFLICTS ..." -if $CVS update | grep '^C' > $CONFLICTS; then +$CVS update | awk '/^C/ { print $2 }' > $CONFLICTS +if [ -s $CONFLICTS ] ; then echo "Conflicts found, fix before committing." cat $CONFLICTS else -- 1.8.3.1