Commit 89775135 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Makefile: dist-checksum rule fix

parent bbd9ced9
...@@ -27,7 +27,7 @@ changelog: ...@@ -27,7 +27,7 @@ changelog:
dist-checksum: $(DIST_TARGETS) dist-checksum: $(DIST_TARGETS)
rm -f *.md5 *.sha256 rm -f *.md5 *.sha256
for sum in '$(DIST_ARCHIVES)'; do \ for sum in $(DIST_ARCHIVES); do \
md5sum $$sum > $$sum.md5 && \ md5sum $$sum > $$sum.md5 && \
sha256sum $$sum > $$sum.sha256; \ sha256sum $$sum > $$sum.sha256; \
done done
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment