Commit 549517c29cef65cbf037ec2917413b5d34c9a063
1 parent
75fa0b22
Exists in
master
and in
79 other branches
Standard posix for tar
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
Makefile
... | ... | @@ -12,8 +12,8 @@ noosfero_dir=/usr/lib/noosfero |
12 | 12 | |
13 | 13 | dist: clean |
14 | 14 | mkdir $(DISTDIR) |
15 | - tar --exclude=.git --exclude=$(DISTDIR) -cf - * | (cd $(DISTDIR) && tar xaf -) | |
16 | - tar --exclude=.git -caf $(TARBALL) $(DISTDIR) | |
15 | + tar --exclude=.git --exclude=$(DISTDIR) -cf - * | (cd $(DISTDIR) && tar xzf -) | |
16 | + tar --exclude=.git -czf $(TARBALL) $(DISTDIR) | |
17 | 17 | |
18 | 18 | clean: |
19 | 19 | $(RM) $(TARBALL) | ... | ... |