We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59554e9 commit 24c1c19Copy full SHA for 24c1c19
Makefile
@@ -56,7 +56,8 @@ dist: ${DIST}
56
distinfo: dist
57
rm -f ${DISTINFO} ${DISTSIGN}
58
${SHA256} ${DISTFILE} >${DISTINFO}
59
- stat -f "Size (${DISTFILE}) = %z" ${DISTFILE} >>${DISTINFO}
+ wc -c <${DISTFILE} \
60
+ | xargs printf 'Size (${DISTFILE}) = %s\n' >>${DISTINFO}
61
${PGP} --armour --detach-sign ${DISTFILE}
62
chmod 644 ${DISTSIGN}
63
ls -l ${DISTFILE} ${DISTINFO} ${DISTSIGN}
0 commit comments