diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2021-05-02 16:36:03 +1200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-05-02 17:21:33 +0700 |
commit | f8bd2b085a211e85e253d06b7acaab043e95daa2 (patch) | |
tree | 520eaeb113e7c442c1799369bfc6015fc63f7054 /haskell/haskell-uuid-types | |
parent | 6f055fb33aca7a0f342a38b9d5fb39494d92939e (diff) | |
download | slackbuilds-f8bd2b085a211e85e253d06b7acaab043e95daa2.tar.gz |
haskell/haskell-uuid-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/haskell-uuid-types')
-rw-r--r-- | haskell/haskell-uuid-types/haskell-uuid-types.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haskell/haskell-uuid-types/haskell-uuid-types.SlackBuild b/haskell/haskell-uuid-types/haskell-uuid-types.SlackBuild index 7f8cf32deb..36570ebd45 100644 --- a/haskell/haskell-uuid-types/haskell-uuid-types.SlackBuild +++ b/haskell/haskell-uuid-types/haskell-uuid-types.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 |