From 37b0c36d5ede1534bc48c14633d21ef3a3abaeb7 Mon Sep 17 00:00:00 2001 From: OscarL Date: Fri, 22 Mar 2024 08:49:08 -0300 Subject: [PATCH] tig: fix build. (#10238) `make install-doc-man` is just too unreliable, for some reason. --- dev-vcs/tig/tig-2.5.8.recipe | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dev-vcs/tig/tig-2.5.8.recipe b/dev-vcs/tig/tig-2.5.8.recipe index d0103bb4d..641292e52 100644 --- a/dev-vcs/tig/tig-2.5.8.recipe +++ b/dev-vcs/tig/tig-2.5.8.recipe @@ -63,7 +63,12 @@ BUILD() INSTALL() { make install - make install-doc-man + + # temporary solution because `make install-doc-man` fails/works randomly. + mkdir -p $manDir/man{1,5,7} + cp -af doc/tig.1 $manDir/man1 + cp -af doc/tigrc.5 $manDir/man5 + cp -af doc/tigmanual.7 $manDir/man7 } # Results for 2.5.8 (took around 15 minutes):