diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2021-05-02 16:35:45 +1200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-05-02 17:21:23 +0700 |
commit | 1a29f90f742285c85ed857671984a79c51a7747a (patch) | |
tree | b60c8c370cfa75b128352061968b1cb091332d3f | |
parent | d7d12315d1936e9bc1221a24a66e9bc5c9c621df (diff) |
haskell/haskell-test-framework-hunit: Fix build with ghc 8.10.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | haskell/haskell-test-framework-hunit/haskell-test-framework-hunit.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haskell/haskell-test-framework-hunit/haskell-test-framework-hunit.SlackBuild b/haskell/haskell-test-framework-hunit/haskell-test-framework-hunit.SlackBuild index 25d80532f2e6..289ec13b3447 100644 --- a/haskell/haskell-test-framework-hunit/haskell-test-framework-hunit.SlackBuild +++ b/haskell/haskell-test-framework-hunit/haskell-test-framework-hunit.SlackBuild @@ -93,7 +93,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 |