diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2022-02-11 21:52:22 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-02-12 13:33:08 +0700 |
commit | 3da23b14efaeb897523a4ac24095e616531a2c60 (patch) | |
tree | 49b78262f4a6954ae7abc447876ca33368f3202d /haskell/ghc | |
parent | 8d5cb098aafb164ffaf58f14fc5572703f84f738 (diff) |
haskell/ghc: Install the man page in the correct place.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'haskell/ghc')
-rw-r--r-- | haskell/ghc/ghc.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haskell/ghc/ghc.SlackBuild b/haskell/ghc/ghc.SlackBuild index 6071f388dee0..964b6770c24b 100644 --- a/haskell/ghc/ghc.SlackBuild +++ b/haskell/ghc/ghc.SlackBuild @@ -145,7 +145,7 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr # If docs were not built and installed, let's install the prebuilt manpage # (taken from the prebuilt tarball) if [ ! -d $PKG/usr/man ]; then - install -D -m0644 $CWD/ghc.1 $PKG/usr/man/man1 + install -D -m0644 $CWD/ghc.1 $PKG/usr/man/man1/ghc.1 fi # Install the bash completion file too |