summaryrefslogtreecommitdiff
path: root/make.c
diff options
context:
space:
mode:
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);
}