summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorVivien Kraus <vivien@planete-kraus.eu>2021-09-27 11:14:38 +0200
committerVivien Kraus <vivien@planete-kraus.eu>2021-10-01 12:32:20 +0200
commit7a2b3bb4bb84ff0091fa39f03d3c61d83f9a1e6c (patch)
tree69610899bf26b69871e56aecc0d46522e7c0e262 /bootstrap
parente72987a9996d7764edb02b40e94703d8b5e5fac8 (diff)
build-system: change to the correct shebang for help2man later
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap17
1 files changed, 0 insertions, 17 deletions
diff --git a/bootstrap b/bootstrap
index 2c0e28e..d3aa2fa 100755
--- a/bootstrap
+++ b/bootstrap
@@ -19,27 +19,10 @@
autoreconf -vif || exit 1
sed -i 's|SHELL = /bin/sh|SHELL = @SHELL@|g' po/Makefile.in.in || exit 1
-## Prepare the man pages
-SCRIPTS_THAT_GET_EXECUTED="../src/disfluid"
-
mkdir -p .native || exit 1
cd .native || exit 1
bash ../configure SHELL=$(which sh) || exit 1
-
-for file in $SCRIPTS_THAT_GET_EXECUTED
-do
- cp $file ${file}.bak
- 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
-
-for file in $SCRIPTS_THAT_GET_EXECUTED
-do
- chmod u+w $file || exit 1
- cp ${file}.bak $file || exit 1
-done
-
cd .. || exit 1
rm -rf .native || exit 1