From 3da23b14efaeb897523a4ac24095e616531a2c60 Mon Sep 17 00:00:00 2001 From: Matteo Bernardini Date: Fri, 11 Feb 2022 21:52:22 +0100 Subject: [PATCH] haskell/ghc: Install the man page in the correct place. Signed-off-by: Matteo Bernardini Signed-off-by: Willy Sudiarto Raharjo --- haskell/ghc/ghc.SlackBuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haskell/ghc/ghc.SlackBuild b/haskell/ghc/ghc.SlackBuild index 6071f388de..964b6770c2 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