diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2021-05-02 16:36:03 +1200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-05-02 17:21:33 +0700 |
commit | 6f055fb33aca7a0f342a38b9d5fb39494d92939e (patch) | |
tree | b477efe2b5668a82208001aee0502acb407bd773 /haskell | |
parent | 8a22b2485344a16e18bf5ebed67308d57e2d053c (diff) |
haskell/haskell-hspec: 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-hspec/haskell-hspec.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haskell/haskell-hspec/haskell-hspec.SlackBuild b/haskell/haskell-hspec/haskell-hspec.SlackBuild index e4b92c1fb6a22..c1eb788c8c3a6 100644 --- a/haskell/haskell-hspec/haskell-hspec.SlackBuild +++ b/haskell/haskell-hspec/haskell-hspec.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 |