diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2021-05-02 16:36:17 +1200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-05-02 17:21:42 +0700 |
commit | 462563f0af3f9cbbee7af76d31c8c360fa28e36a (patch) | |
tree | 3e2d5b22cdf37332c873e1737ee57c75a9ec9bdc /haskell | |
parent | b5c4cd58ffcb7e7bc72215eec4fee08648fae16c (diff) |
haskell/haskell-asn1-types: 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-asn1-types/haskell-asn1-types.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haskell/haskell-asn1-types/haskell-asn1-types.SlackBuild b/haskell/haskell-asn1-types/haskell-asn1-types.SlackBuild index 368b288f3849..4323a9128c1a 100644 --- a/haskell/haskell-asn1-types/haskell-asn1-types.SlackBuild +++ b/haskell/haskell-asn1-types/haskell-asn1-types.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 |