blob: e9fd9e31c07f679b95f71f327583eb40c6633708 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
#
# $NetBSD: bmake2pkgsrc,v 1.1 2006/07/14 15:58:08 jlam Exp $
#
# This script should be run after the import-bmake-sh script is run to
# generate the bmake.1 manpage for the bootstrap script.
#
# Run this from the devel/bmake package directory:
#
# cd devel/bmake && ./bmake2pkgsrc
#
cd files
( sed -e '/^.Nm/s/make/bmake/' -e '/^.Sh HISTORY/,$d' make.1
echo ".Sh HISTORY"
echo ".Nm"
echo "is derived from NetBSD's"
echo ".Xr make 1 ."
echo "It uses autoconf to facilitate portability to other platforms."
) > bmake.1
|