diff --git a/docs/Makefile.am b/docs/Makefile.am index 4633e66024..50cdcbe4a6 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -19,7 +19,7 @@ EXTRA_DIST = \ image-png image-pdf image-eps version.entities.in upload: - for a in manual pwg faq; do cd $$a; make upload; cd ..; done + @for a in manual pwg faq; do cd $$a; make upload; cd ..; done dist-hook: $(RM) -rf $(distdir)/random/CVS diff --git a/docs/manuals.mak b/docs/manuals.mak index 8d97ed604d..408c32975a 100644 --- a/docs/manuals.mak +++ b/docs/manuals.mak @@ -170,12 +170,12 @@ check-local: ### this is a website upload target upload: html ps pdf - @export RSYNC_RSH=ssh + @export RSYNC_RSH=ssh; \ if test "x$$GST_PLUGINS_VERSION_NANO" = x0; then \ export DOCVERSION=$(VERSION); \ else export DOCVERSION=cvs; \ fi; \ - echo Uploading docs to htdocs/docs/$$DOCVERSION; \ + echo Uploading docs to shell.sf.net/home/groups/g/gs/gstreamer/htdocs/docs/$$DOCVERSION; \ ssh $(USERNAME)@shell.sf.net mkdir -p /home/groups/g/gs/gstreamer/htdocs/docs/$$DOCVERSION/$(DOC); \ rsync -arv $(DOC).ps $(DOC).pdf html $(USERNAME)@shell.sf.net:/home/groups/g/gs/gstreamer/htdocs/docs/$$DOCVERSION/$(DOC)