Skip to content

Commit 33eccbf

Browse files
author
Jelte Jansen
committed
add autoreconf in create_tarball -n
1 parent 1d38d3b commit 33eccbf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

create_tarball.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@ if [ $CHECK -eq 0 ]; then
1414

1515
mkdir -p /tmp/${BNAME} &&\
1616
cp -r * /tmp/${BNAME}/ &&\
17-
(cd /tmp/${BNAME}; (make distclean||/bin/true)) &&\
17+
(cd /tmp/${BNAME}; autoreconf --install && (make distclean||/bin/true)) &&\
1818
(cd /tmp; tar -czvf ${BNAME}.tar.gz ${BNAME}) &&\
1919
echo "Created /tmp/${BNAME}.tar.gz" &&\
2020
rm -rf /tmp/${BNAME}
21+
sha256sum /tmp/${BNAME}.tar.gz
2122

2223
else
2324

0 commit comments

Comments
 (0)