Makefile: tiny compatibility improvement for tar -cf - json2tsv - JSON to TSV c… | |
git clone git://git.codemadness.org/json2tsv | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 5b92fe10218579d7dd0c725c043de425d4076a9c | |
parent df5cda00ba8ef98787d15a666cd06b1fcb336b4c | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Sun, 21 Jun 2020 18:02:24 +0200 | |
Makefile: tiny compatibility improvement for tar -cf | |
Diffstat: | |
M Makefile | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/Makefile b/Makefile | |
@@ -48,7 +48,7 @@ dist: | |
cp -f ${MAN1} ${DOC} ${HDR} \ | |
${SRC} ${LIBJSONSRC} Makefile "${NAME}-${VERSION}" | |
# make tarball | |
- tar -cf - "${NAME}-${VERSION}" | gzip -c > "${NAME}-${VERSION}.tar.gz" | |
+ tar cf - "${NAME}-${VERSION}" | gzip -c > "${NAME}-${VERSION}.tar.gz" | |
rm -rf "${NAME}-${VERSION}" | |
clean: |