Index: Makefile =================================================================== RCS file: /usr/cvsroot/asterisk/Makefile,v retrieving revision 1.126 diff -u -r1.126 Makefile --- Makefile 19 Dec 2004 17:33:19 -0000 1.126 +++ Makefile 29 Dec 2004 18:41:22 -0000 @@ -382,8 +382,13 @@ update: @if [ -d CVS ]; then \ echo "Updating from CVS..." ; \ - cvs -q -z3 update -Pd; \ + cvs -q -z3 update -Pd | tee update.out; \ rm -f .version; \ + if [ `grep -c ^C update.out` -gt 0 ]; then \ + echo ; echo "The following files have conflicts:" ; \ + grep ^C update.out | cut -d' ' -f2- ; \ + fi ; \ + rm -f update.out; \ else \ echo "Not CVS"; \ fi