From 4f9d02b9b4c84d567709e0325642ac55e068a1ee Mon Sep 17 00:00:00 2001 From: Vivien Kraus Date: Wed, 1 Jan 2020 00:00:00 +0100 Subject: Set up the project infrastructure --- bootstrap | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 bootstrap (limited to 'bootstrap') diff --git a/bootstrap b/bootstrap new file mode 100755 index 0000000..4c37c0f --- /dev/null +++ b/bootstrap @@ -0,0 +1,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 -- cgit v1.2.3