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 | 59085d9fd1d57bd129007754cdb37aec4ba73fb1 (patch) | |
tree | 329268afb2c22d589bbfa53d4d9dabf1825b969f /haskell/haskell-polyparse | |
parent | 832046a1be505fe4ab885222b93a4895407bf29d (diff) |
haskell/haskell-polyparse: 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-polyparse')
-rw-r--r-- | haskell/haskell-polyparse/haskell-polyparse.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haskell/haskell-polyparse/haskell-polyparse.SlackBuild b/haskell/haskell-polyparse/haskell-polyparse.SlackBuild index eea2960e7393..b3f31e701f15 100644 --- a/haskell/haskell-polyparse/haskell-polyparse.SlackBuild +++ b/haskell/haskell-polyparse/haskell-polyparse.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 |