diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2021-05-02 16:35:40 +1200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-05-02 17:21:21 +0700 |
commit | 587f8320afdc3e5a42d25c5ab94ad25418450063 (patch) | |
tree | 56fcf3f03cf6b500c027cf6a681878760a6694a9 /haskell/haskell-cookie | |
parent | acc0da9536b509833d32f997e97ebc5c0e6ff1c5 (diff) | |
download | slackbuilds-587f8320afdc3e5a42d25c5ab94ad25418450063.tar.gz |
haskell/haskell-cookie: 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-cookie')
-rw-r--r-- | haskell/haskell-cookie/haskell-cookie.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haskell/haskell-cookie/haskell-cookie.SlackBuild b/haskell/haskell-cookie/haskell-cookie.SlackBuild index 3108e30782..269d287222 100644 --- a/haskell/haskell-cookie/haskell-cookie.SlackBuild +++ b/haskell/haskell-cookie/haskell-cookie.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 |