rpmdist.mk: Fix missing cvs update -dP in check_cvs_sync

This commit is contained in:
Jan Lindemann 2007-12-22 17:45:43 +00:00 committed by Jan Lindemann
commit 46f8219987

View file

@ -134,7 +134,8 @@ update-repo.dist: upload.dist
define check_cvs_sync define check_cvs_sync
echo + checking cvs ;\ echo + checking cvs ;\
cvs status > cvs_status.tmp 2>&1;\ cvs update -dP ;\
cvs status > cvs_status.tmp 2>&1 ;\
if [ $$? != 0 ]; then \ if [ $$? != 0 ]; then \
cat cvs_status.tmp ;\ cat cvs_status.tmp ;\
echo -e "\n======== cvs status failed, giving up." >&2 ;\ echo -e "\n======== cvs status failed, giving up." >&2 ;\