diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2021-05-02 16:35:39 +1200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-05-02 17:21:20 +0700 |
commit | 3756b59327ce36052c052b3cb4c42d2fbec51d1d (patch) | |
tree | 24462c041b55c5224171e20fe7cf2d351ad206ee /haskell/haskell-bmp | |
parent | ffa65a62a3d9a5d7002aac79f4817864d0b43e31 (diff) |
haskell/haskell-bmp: Fix build with ghc 8.10.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'haskell/haskell-bmp')
-rw-r--r-- | haskell/haskell-bmp/haskell-bmp.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haskell/haskell-bmp/haskell-bmp.SlackBuild b/haskell/haskell-bmp/haskell-bmp.SlackBuild index 5c8fc519eca22..e3cd8e325b878 100644 --- a/haskell/haskell-bmp/haskell-bmp.SlackBuild +++ b/haskell/haskell-bmp/haskell-bmp.SlackBuild @@ -90,7 +90,7 @@ runghc Setup copy --destdir=$PKG runghc Setup register --gen-pkg-config PKGCONFD=/usr/lib${LIBDIRSUFFIX}/ghc-${GHC_VERSION}/package.conf.d -PKGID=$( grep -E "^id: " $SRCNAM-$VERSION.conf | cut -d" " -f2 ) +PKGID=$( grep -E "^id: " $SRCNAM-$VERSION.conf | sed "s/[[:space:]][[:space:]]*/ /" | cut -d" " -f2 ) mkdir -p $PKG/$PKGCONFD mv $SRCNAM-$VERSION.conf $PKG/$PKGCONFD/$PKGID.conf |