diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2021-05-02 16:35:21 +1200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-05-02 17:21:10 +0700 |
commit | 8a2ba28cf3f74f140bdce12918f04772be4d96a3 (patch) | |
tree | f642113bf9861ef7cdc949c72e2cf48f63238c9b /haskell/haskell-blaze-html | |
parent | 622e591b5f517fbde99870d86ee318a3eb58de60 (diff) |
haskell/haskell-blaze-html: 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-blaze-html')
-rw-r--r-- | haskell/haskell-blaze-html/haskell-blaze-html.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haskell/haskell-blaze-html/haskell-blaze-html.SlackBuild b/haskell/haskell-blaze-html/haskell-blaze-html.SlackBuild index 59171a178ef5..f5cec68090be 100644 --- a/haskell/haskell-blaze-html/haskell-blaze-html.SlackBuild +++ b/haskell/haskell-blaze-html/haskell-blaze-html.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 |