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.
This commit is contained in:
Ezra Buehler 2019-08-24 04:20:54 +02:00
parent 67848bfc6f
commit ac972cb6c7
1 changed files with 2 additions and 2 deletions

View File

@ -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 ..