diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2021-05-02 16:36:02 +1200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-05-02 17:21:32 +0700 |
commit | bc147bd40743e756063e2442c39b6f1777b3003a (patch) | |
tree | 9cd32909fd87a4dbd8d8ca9ccccbc54924acf6ba /haskell/haskell-unliftio-core | |
parent | 7e24f06b5deb9a1f5c07c0e590f1149f5de33f20 (diff) | |
download | slackbuilds-bc147bd40743e756063e2442c39b6f1777b3003a.tar.gz |
haskell/haskell-unliftio-core: 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-unliftio-core')
-rw-r--r-- | haskell/haskell-unliftio-core/haskell-unliftio-core.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haskell/haskell-unliftio-core/haskell-unliftio-core.SlackBuild b/haskell/haskell-unliftio-core/haskell-unliftio-core.SlackBuild index 8e33f425d0..3963d040e8 100644 --- a/haskell/haskell-unliftio-core/haskell-unliftio-core.SlackBuild +++ b/haskell/haskell-unliftio-core/haskell-unliftio-core.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 |