diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-24 04:52:22 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-24 04:52:22 +0000 |
commit | 7f3caba522f4d24764f29d83aa2de9198bb7f01c (patch) | |
tree | 66b798ea74302325d6a5c11df044cbe4bb845af1 /scripts/LinuxManBook/build.sh | |
parent | Adding upstream version 6.7. (diff) | |
download | manpages-upstream.tar.xz manpages-upstream.zip |
Adding upstream version 6.8.upstream/6.8upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rwxr-xr-x | scripts/LinuxManBook/build.sh | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/scripts/LinuxManBook/build.sh b/scripts/LinuxManBook/build.sh deleted file mode 100755 index fcb8b83..0000000 --- a/scripts/LinuxManBook/build.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env -Sbash -# Copyright 2023-2024, Alejandro Colomar <alx@kernel.org> -# SPDX-License-Identifier: GPL-3.0-or-later - - -test -v CAT || CAT=cat; -test -v PRECONV || PRECONV=preconv; -test -v PIC || PIC=pic; -test -v TBL || TBL=tbl; -test -v EQN || EQN=eqn; -test -v TROFF || TROFF=troff; -test -v GROPDF || GROPDF=gropdf; - - -( - $CAT "$(dirname "$0")"/LMBfront.roff; - $CAT "$(dirname "$0")"/an.tmac; - "$(dirname "$0")"/prepare.pl "$1"; -) \ -| $PRECONV \ -| $PIC \ -| $TBL \ -| $EQN -Tpdf \ -| $TROFF -Tpdf -F"$(dirname "$0")" -dpaper=a4 \ -| $GROPDF -F"$(dirname "$0")" -pa4; |