diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2021-05-02 16:36:07 +1200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-05-02 17:21:35 +0700 |
commit | 7a9ca7b84638f64de33ed3643d63f87d1847b68d (patch) | |
tree | c290e0c4833d4817fa24c3775ff4cde2bf1a883a /haskell | |
parent | 7cb75a15b02a48acb2e1ddb1f83acf20d49f2519 (diff) |
haskell/haskell-fast-logger: 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')
-rw-r--r-- | haskell/haskell-fast-logger/haskell-fast-logger.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haskell/haskell-fast-logger/haskell-fast-logger.SlackBuild b/haskell/haskell-fast-logger/haskell-fast-logger.SlackBuild index 75b7416598db..48a2c767a494 100644 --- a/haskell/haskell-fast-logger/haskell-fast-logger.SlackBuild +++ b/haskell/haskell-fast-logger/haskell-fast-logger.SlackBuild @@ -89,7 +89,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 |