diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2020-06-21 18:01:52 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2020-06-21 18:01:52 +0200 |
commit | b4830a4a3a98874293e20b309e083a144c1b3609 (patch) | |
tree | 0f2ee199eb02774d542916f7230cad21d3420398 | |
parent | 3d2cd7cf4a4052f3db6e13af4f22835b457bdeb3 (diff) |
Makefile: tiny compatibility improvement for tar -cf
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -96,7 +96,7 @@ dist: sfeedrc.example style.css \ "${NAME}-${VERSION}" # make tarball - tar -cf - "${NAME}-${VERSION}" | \ + tar cf - "${NAME}-${VERSION}" | \ gzip -c > "${NAME}-${VERSION}.tar.gz" rm -rf "${NAME}-${VERSION}" |