summaryrefslogtreecommitdiff
path: root/bootstrap
blob: 07f8c3576b0f10ee92159c4e65de8763767c0566 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh

(echo '\input texinfo' ;
 echo '@include version.texi') \
    > doc/webid-oidc.texi || exit 1
autoreconf -vif || exit 1
rm doc/webid-oidc.texi || 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

for file in ../src/webid-oidc-issuer ../src/webid-oidc-reverse-proxy ../src/webid-oidc-client-service ../src/webid-oidc-example-app
do
    sed -i "s|/usr/local/bin/guile|$(which guile)|g" $file || exit 1
done

make -j V=1 || exit 1
make -j dist || exit 1
cd .. || exit 1
rm -rf .native || exit 1