We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d38d3b commit 33eccbfCopy full SHA for 33eccbf
create_tarball.sh
@@ -14,10 +14,11 @@ if [ $CHECK -eq 0 ]; then
14
15
mkdir -p /tmp/${BNAME} &&\
16
cp -r * /tmp/${BNAME}/ &&\
17
- (cd /tmp/${BNAME}; (make distclean||/bin/true)) &&\
+ (cd /tmp/${BNAME}; autoreconf --install && (make distclean||/bin/true)) &&\
18
(cd /tmp; tar -czvf ${BNAME}.tar.gz ${BNAME}) &&\
19
echo "Created /tmp/${BNAME}.tar.gz" &&\
20
rm -rf /tmp/${BNAME}
21
+ sha256sum /tmp/${BNAME}.tar.gz
22
23
else
24
0 commit comments