diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2021-05-02 16:36:20 +1200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-05-02 17:21:43 +0700 |
commit | 8cc02d8f584a8a743cfd145ad621ce990273d739 (patch) | |
tree | 7ae6c04b0bc91ad34b1f5951d910745b1f15a66c /haskell | |
parent | edc5dd5df09e5c5377d4ab2b5b1dc093a3192385 (diff) |
haskell/haskell-base16-bytestring: 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-base16-bytestring/haskell-base16-bytestring.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haskell/haskell-base16-bytestring/haskell-base16-bytestring.SlackBuild b/haskell/haskell-base16-bytestring/haskell-base16-bytestring.SlackBuild index e74af70858f4..bd7c0df9c575 100644 --- a/haskell/haskell-base16-bytestring/haskell-base16-bytestring.SlackBuild +++ b/haskell/haskell-base16-bytestring/haskell-base16-bytestring.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 |