summaryrefslogtreecommitdiff
path: root/make-dist
blob: fffedfb095f27ee8ab2551e2dc7cbb360dabdfb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh -e

tag="${1:-master}"

j=-j`getconf _NPROCESSORS_ONLN 2> /dev/null` || j=

distdir=strace-dist-$$
abs_distdir="`pwd`/$distdir"
trap 'chmod -Rf u+w $abs_distdir; rm -rf $abs_distdir' 1 2 15 0

set -x
git clone -q -n -s .git "$distdir"

cd $distdir
git checkout -f "$tag"

./git-set-file-times

autoreconf -i -f

./configure --enable-maintainer-mode

make -s $j distcheck
make -s $j news-check

mv -f strace-*.tar.xz ..