summaryrefslogtreecommitdiff
path: root/make.c
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2025-09-07 15:54:02 +0200
committerThomas Voss <mail@thomasvoss.com> 2025-09-07 15:54:02 +0200
commite60c0f29e77a1564e4f6ee0421ea215db7554aa6 (patch)
tree201714dd7de3f8820ae13e2294ab0ac684b89b1a /make.c
parentbf8bb38365c1318e7947b04c4806bab49e311865 (diff)
Install the manual page
Diffstat (limited to 'make.c')
-rw-r--r--make.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/make.c b/make.c
index 96701c9..c34fbde 100644
--- a/make.c
+++ b/make.c
@@ -176,6 +176,12 @@ install(void)
cmdput(cmd);
if (rv_(cmdexec(cmd)) != 0)
exit(rv);
+ strszero(&cmd);
+
+ strspushl(&cmd, "cp", "tiktok.1", mandir);
+ cmdput(cmd);
+ if (rv_(cmdexec(cmd)) != 0)
+ exit(rv);
strsfree(&cmd);
}