diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2021-05-02 16:36:18 +1200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-05-02 17:21:42 +0700 |
commit | 45671d36c433d6fb6768d9f784114f2a6b737384 (patch) | |
tree | 737e6d6345324481ac199f1934284e54a90505be /haskell | |
parent | 3480d4da97a8a948f41de42adce234cebf28f8eb (diff) |
haskell/haskell-path: 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-path/haskell-path.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haskell/haskell-path/haskell-path.SlackBuild b/haskell/haskell-path/haskell-path.SlackBuild index 0c637bc5d17f..ebdc675de43e 100644 --- a/haskell/haskell-path/haskell-path.SlackBuild +++ b/haskell/haskell-path/haskell-path.SlackBuild @@ -92,7 +92,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 |