From ac972cb6c7b89c29bf13013f11a79f7da5faa3d4 Mon Sep 17 00:00:00 2001 From: Ezra Buehler Date: Sat, 24 Aug 2019 04:20:54 +0200 Subject: [PATCH] Move man pages for hfsutils to share/man This is only necessary for Homebrew. However, it makes sense in general, it is where the other man pages lie. --- build-toolchain.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-toolchain.bash b/build-toolchain.bash index 1b701750ab..88d05a0325 100755 --- a/build-toolchain.bash +++ b/build-toolchain.bash @@ -299,11 +299,11 @@ if [ $SKIP_THIRDPARTY != true ]; then # Build hfsutil mkdir -p $PREFIX/lib - mkdir -p $PREFIX/man/man1 + mkdir -p $PREFIX/share/man/man1 rm -rf hfsutils cp -r $SRC/hfsutils . cd hfsutils - ./configure --prefix=$PREFIX --enable-devlibs + ./configure --prefix=$PREFIX --mandir=$PREFIX/share/man --enable-devlibs make make install cd ..