diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2021-05-02 16:35:53 +1200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-05-02 17:21:28 +0700 |
commit | a6c230ad27ae88b0be3db2dc1d273c46c7c0aded (patch) | |
tree | f6ba3b4689b66d25ee9d0ce37f582661e6910946 /haskell/haskell-enclosed-exceptions | |
parent | c951d149e2fa6d42981e52219931c6956d1c1225 (diff) |
haskell/haskell-enclosed-exceptions: 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-enclosed-exceptions')
-rw-r--r-- | haskell/haskell-enclosed-exceptions/haskell-enclosed-exceptions.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haskell/haskell-enclosed-exceptions/haskell-enclosed-exceptions.SlackBuild b/haskell/haskell-enclosed-exceptions/haskell-enclosed-exceptions.SlackBuild index 6bf7e9cb34aea..2ab6a60162cd7 100644 --- a/haskell/haskell-enclosed-exceptions/haskell-enclosed-exceptions.SlackBuild +++ b/haskell/haskell-enclosed-exceptions/haskell-enclosed-exceptions.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 |