diff options
author | bwarsaw <> | 2005-02-12 17:19:50 +0000 |
---|---|---|
committer | bwarsaw <> | 2005-02-12 17:19:50 +0000 |
commit | 632dcbc10d219629b49207ffa2f5788165fff1dc (patch) | |
tree | 2c8e11a184735131c33fc3bddd2e356a039240ff /admin/www | |
parent | de912d8d4866f24da8399ea30e76ec41f08d6313 (diff) | |
download | mailman2-632dcbc10d219629b49207ffa2f5788165fff1dc.tar.gz mailman2-632dcbc10d219629b49207ffa2f5788165fff1dc.tar.xz mailman2-632dcbc10d219629b49207ffa2f5788165fff1dc.zip |
Don't use -a when rsync'ing because I don't want to copy permissions.
Diffstat (limited to 'admin/www')
-rw-r--r-- | admin/www/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/admin/www/Makefile b/admin/www/Makefile index 44b2e79e..12d16cde 100644 --- a/admin/www/Makefile +++ b/admin/www/Makefile @@ -5,6 +5,10 @@ HTALLFLAGS = -f -s $(HTSTYLE) HTROOT = . HTFLAGS = $(HTALLFLAGS) -r $(HTROOT) HTRELDIR = . +# Use args for rsync like -a without the permission setting flag. I want to +# keep the permissions set the way they are on the destination files, not on +# my source files. Also add verbosity, compression, and ignoring CVS. +RSYNC_ARGS = -rltgoDCvz SOURCES = $(shell echo *.ht) EXTRA_TARGETS = faq.html todo.html @@ -24,9 +28,9 @@ todo.ht: ../../TODO ../bin/mm2do $< $@ install: - -rsync -Cavz . www.list.org:mailman.list.org - -rsync -Cavz . mailman.sf.net:mailman/htdocs - -rsync -Cavz . $(HOME)/projects/mailman-gnu + -rsync $(RSYNC_ARGS) . www.list.org:mailman.list.org + -rsync $(RSYNC_ARGS) . mailman.sf.net:mailman/htdocs + -rsync $(RSYNC_ARGS) . $(HOME)/projects/mailman-gnu clean: -rm $(GENERATED_HTML) |