summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorVivien Kraus <vivien@planete-kraus.eu>2021-03-30 20:25:01 +0200
committerVivien Kraus <vivien@planete-kraus.eu>2021-05-11 02:24:27 +0200
commit1fbc55dd28556b9a5ea723384cd4c4e230266d02 (patch)
tree153480e6ea3d56a897b62d95eb1b9efb9b651f2e /bootstrap
parenta9b911038ebc5537479e3f48fb6e0cf8492faf2a (diff)
Implement a reverse proxy
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap7
1 files changed, 6 insertions, 1 deletions
diff --git a/bootstrap b/bootstrap
index e58da85..7621b38 100755
--- a/bootstrap
+++ b/bootstrap
@@ -11,7 +11,12 @@ sed -i 's|SHELL = /bin/sh|SHELL = @SHELL@|g' po/Makefile.in.in || exit 1
mkdir -p .native || exit 1
cd .native || exit 1
bash ../configure SHELL=$(which sh) || exit 1
-sed -i "s|/usr/local/bin/guile|$(which guile)|g" ../src/webid-oidc-issuer || exit 1
+
+for file in ../src/webid-oidc-issuer ../src/webid-oidc-reverse-proxy
+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