commit 67167b665a10d4efc104919089eae02a664c2146 parent 036d41dc64104576bb5597c121df89e8d4ed253b Author: sin <sin@2f30.org> Date: Wed, 5 Mar 2014 13:36:08 +0000 Copy the manpages in a separate pass Diffstat:
M | pkgs/sbase | | | 6 | ++++-- |
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/pkgs/sbase b/pkgs/sbase @@ -16,8 +16,10 @@ build: crossmusl for f in *.o; do $CC -o "${f%.*}" $f util.a $LDFLAGS done - mkdir -p "$root/share/man/man1" for f in *.o; do cp "${f%.*}" "$root/bin" - cp "${f%%.o}.1" "$root/share/man/man1" + done + mkdir -p "$root/share/man/man1" + for f in *.1; do + cp $f "$root/share/man/man1" done