summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Vasile <james@jamesvasile.com>2013-02-07 12:22:45 -0500
committerJames Vasile <james@jamesvasile.com>2013-02-07 12:22:45 -0500
commit338a0684ba40a1503da19b8aa043db11cbb89a33 (patch)
treefd413a2ddd65a9240627c875a8984b513c505352
parentfdd1d041701a354e4e2980722a92339b815a6fe2 (diff)
quote the wildcards in rsync excludes
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fd1cbdc..4f0b86a 100644
--- a/Makefile
+++ b/Makefile
@@ -36,7 +36,7 @@ install: default
gzip $(DESTDIR)/usr/share/doc/plinth/plinth.1
mv $(DESTDIR)/usr/share/doc/plinth/plinth.1.gz $(DESTDIR)/usr/share/man/man1
rsync -rl *.py modules templates vendor themes static \
- --exclude static/doc --exclude .git/* --exclude *.pyc \
+ --exclude static/doc --exclude ".git/*" --exclude "*.pyc" \
$(DESTDIR)/usr/lib/python2.7/plinth
mkdir -p $(DESTDIR)/usr/lib/python2.7/plinth/static/doc
cp doc/*.html $(DESTDIR)/usr/lib/python2.7/plinth/static/doc