diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2021-05-02 16:35:30 +1200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-05-02 17:21:15 +0700 |
commit | 832046a1be505fe4ab885222b93a4895407bf29d (patch) | |
tree | 56435961d6f42c2092b96893a36e916f98f73fe0 /haskell/haskell-doctemplates | |
parent | 9e11967c52f350a789de30ccc52d1098cb8cf5c5 (diff) |
haskell/haskell-doctemplates: 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-doctemplates')
-rw-r--r-- | haskell/haskell-doctemplates/haskell-doctemplates.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haskell/haskell-doctemplates/haskell-doctemplates.SlackBuild b/haskell/haskell-doctemplates/haskell-doctemplates.SlackBuild index 1f889a45f227..6f8348da41eb 100644 --- a/haskell/haskell-doctemplates/haskell-doctemplates.SlackBuild +++ b/haskell/haskell-doctemplates/haskell-doctemplates.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 |