Commit e2df73cee53dfdcabc0380a4e38e1605983ba220

Authored by Sergio Oliveira
1 parent 5c74d1b5

Changed compression to always use gzip

Signed-off-by: Alexandre Barbosa <alexandreab@live.com>
Signed-off-by: Sergio Oliveira <sergio@tracy.com.br>
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
Makefile
... ... @@ -30,7 +30,7 @@ sdist: $(TARBALL)
30 30 $(TARBALL):
31 31 mkdir -p $$(dirname $(TARBALL))
32 32 $(RM) $(TARBALL)
33   - tar caf $(TARBALL) $(SOURCES) $(DISTDIR)
  33 + tar czf $(TARBALL) $(SOURCES) $(DISTDIR)
34 34  
35 35 distclean:
36 36 $(RM) -r $$(dirname $(TARBALL)) src/
... ...