diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2021-05-02 16:36:22 +1200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-05-02 17:21:44 +0700 |
commit | 758103e56fe05014f6ff81f7bca9bff63f8e7710 (patch) | |
tree | 782046f239d690d07016d73ba222ea9087bff57d /haskell | |
parent | 875b370de897caa44b8aa996487088a21f1a739c (diff) | |
download | slackbuilds-758103e56fe05014f6ff81f7bca9bff63f8e7710.tar.gz |
haskell/haskell-quickcheck-io: 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-quickcheck-io/haskell-quickcheck-io.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haskell/haskell-quickcheck-io/haskell-quickcheck-io.SlackBuild b/haskell/haskell-quickcheck-io/haskell-quickcheck-io.SlackBuild index eb28ff0e1a..be4276b799 100644 --- a/haskell/haskell-quickcheck-io/haskell-quickcheck-io.SlackBuild +++ b/haskell/haskell-quickcheck-io/haskell-quickcheck-io.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 |