Commit 5f01747829749c98dab5c99ecffb4d1e66d01443
Committed by
Sergio Oliveira
1 parent
63167085
Exists in
master
and in
2 other branches
Fix Makefile.
Showing
1 changed file
with
1 additions
and
2 deletions
Show diff stats
Makefile
... | ... | @@ -29,8 +29,7 @@ sdist: $(TARBALL) |
29 | 29 | $(TARBALL): |
30 | 30 | mkdir -p $$(dirname $(TARBALL)) |
31 | 31 | $(RM) $(TARBALL) |
32 | - cp $(SOURCES) $(DISTDIR) | |
33 | - tar caf $(TARBALL) $(DISTDIR) | |
32 | + tar caf $(TARBALL) $(SOURCES) $(DISTDIR) | |
34 | 33 | |
35 | 34 | distclean: |
36 | 35 | $(RM) -r $$(dirname $(TARBALL)) src/ | ... | ... |