diff options
author | Thomas Voss <mail@thomasvoss.com> | 2025-09-07 15:54:02 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2025-09-07 15:54:02 +0200 |
commit | e60c0f29e77a1564e4f6ee0421ea215db7554aa6 (patch) | |
tree | 201714dd7de3f8820ae13e2294ab0ac684b89b1a /make.c | |
parent | bf8bb38365c1318e7947b04c4806bab49e311865 (diff) |
Install the manual page
Diffstat (limited to 'make.c')
-rw-r--r-- | make.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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); } |