diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2021-05-02 16:35:41 +1200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-05-02 17:21:21 +0700 |
commit | a053f63824c2c976c4226f420f5f7a3996570193 (patch) | |
tree | c78effa09a04772964c5ff693bbecb2f53b911bb | |
parent | a43642166c4835e5be94d4ec83376f980573f624 (diff) | |
download | slackbuilds-a053f63824c2c976c4226f420f5f7a3996570193.tar.gz |
haskell/haskell-pandoc-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>
-rw-r--r-- | haskell/haskell-pandoc-types/haskell-pandoc-types.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haskell/haskell-pandoc-types/haskell-pandoc-types.SlackBuild b/haskell/haskell-pandoc-types/haskell-pandoc-types.SlackBuild index 43e612d52f..1ae8bb9b26 100644 --- a/haskell/haskell-pandoc-types/haskell-pandoc-types.SlackBuild +++ b/haskell/haskell-pandoc-types/haskell-pandoc-types.SlackBuild @@ -91,7 +91,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 |