1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
#!/bin/sh
#
# Run this shell script to bootstrap as necessary after a fresh checkout.
#
# Written by Russ Allbery <eagle@eyrie.org>
# Copyright 2015 Russ Allbery <eagle@eyrie.org>
# Copyright 2005, 2007-2008, 2011
# The Board of Trustees of the Leland Stanford Junior University
#
# SPDX-License-Identifier: MIT
set -e
# Regenerate all the autotools files.
autoreconf -i --force
# Generate manual pages.
version=`grep '^kstart' NEWS | head -1 | cut -d' ' -f2`
pod2man --release="$version" --center="kstart" docs/k5start.pod \
>docs/k5start.1
pod2man --release="$version" --center="kstart" docs/krenew.pod \
>docs/krenew.1
|