summaryrefslogtreecommitdiff
path: root/bootstrap
blob: 4c37c0f1690a4bd40f201c595b165d63eda7f859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

autoreconf -vif || exit 1
sed -i 's|SHELL = /bin/sh|SHELL = @SHELL@|g' po/Makefile.in.in || exit 1

## Prepare the man pages
mkdir -p .native || exit 1
cd .native || exit 1
bash ../configure SHELL=$(which sh) || exit 1
make -j V=1 || exit 1
make -j dist || exit 1
cd .. || exit 1
rm -rf .native || exit 1