common Makefile.common,1.95,1.96

Bill Nottingham (notting) fedora-extras-commits at redhat.com
Thu Apr 24 19:57:40 UTC 2008


Author: notting

Update of /cvs/extras/common
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv1325/common

Modified Files:
	Makefile.common 
Log Message:
8.72-1


Index: Makefile.common
===================================================================
RCS file: /cvs/extras/common/Makefile.common,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -r1.95 -r1.96
--- Makefile.common	24 Apr 2008 03:52:57 -0000	1.95
+++ Makefile.common	24 Apr 2008 19:57:10 -0000	1.96
@@ -223,7 +223,7 @@
 upload-file  = $(UPLOAD_CLIENT) -F "name=$(NAME)" -F "md5sum=$${m%%[[:space:]]*}" -F "file=@$$f" $(UPLOAD_REPOSITORY)
 
 define upload-request
-echo "Checking : $$b on $(UPLOAD_REPOSITORY)..." ; \
+echo "Checking : $$b on $(UPLOAD_REPOSITORY)..." ; set -x ;\
 check=$$($(upload-check)) ; retc=$$? ; \
 if test $$retc -ne 0 ; then \
     echo "ERROR: could not check remote file status" ; \
@@ -256,9 +256,9 @@
 # Upload the FILES, adding to the ./sources manifest
 upload: $(FILES)
 	$(check-cert)
-	@if ! test -f ./sources ; then touch ./sources ; fi
-	@if ! test -f ./.cvsignore ; then touch ./.cvsignore ; fi
-	@for f in $(FILES); do \
+	if ! test -f ./sources ; then touch ./sources ; fi
+	if ! test -f ./.cvsignore ; then touch ./.cvsignore ; fi
+	for f in $(FILES); do \
 	    if ! test -s $$f ; then echo "SKIPPING EMPTY FILE: $$f" ; continue ; fi ; \
 	    b="$$(basename $$f)" ; \
 	    m="$$(cd $$(dirname $$f) && md5sum $$b)" ; \
@@ -279,9 +279,9 @@
 	        echo $$b >> .cvsignore ; \
 	    fi \
 	done
-	@if grep "^/sources/" CVS/Entries >/dev/null; then true ; else cvs -Q add sources; fi
-	@echo "Source upload succeeded. Don't forget to commit the new ./sources file"
-	@cvs update sources .cvsignore
+	if grep "^/sources/" CVS/Entries >/dev/null; then true ; else cvs -Q add sources; fi
+	echo "Source upload succeeded. Don't forget to commit the new ./sources file"
+	cvs update sources .cvsignore
 
 # Upload FILES and recreate the ./sources file to include only these FILES
 new-source new-sources: $(FILES)




More information about the scm-commits mailing list