Commit d90a83e40a8d2228a866c3e9f79065bf3e251d69
1 parent
dfdc49f7
Exists in
master
and in
1 other branch
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/ | ... | ... |