diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2021-05-02 16:35:53 +1200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-05-02 17:21:27 +0700 |
commit | 5a4ff900e11b39d7b2a7bf26d9cea94b7c725e62 (patch) | |
tree | 184473bbd2357a0ce87bbdd03cd5ba82f6d94419 | |
parent | ec6a289202b0f28aef97a4e8a40ab4cf4dbaa266 (diff) |
haskell/haskell-data-ordlist: 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-data-default-instances-containers/haskell-data-default-instances-containers.SlackBuild | 2 | ||||
-rw-r--r-- | haskell/haskell-data-ordlist/haskell-data-ordlist.SlackBuild | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/haskell/haskell-data-default-instances-containers/haskell-data-default-instances-containers.SlackBuild b/haskell/haskell-data-default-instances-containers/haskell-data-default-instances-containers.SlackBuild index 1c92acc3b4d2e..1aec34019bf37 100644 --- a/haskell/haskell-data-default-instances-containers/haskell-data-default-instances-containers.SlackBuild +++ b/haskell/haskell-data-default-instances-containers/haskell-data-default-instances-containers.SlackBuild @@ -90,7 +90,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 diff --git a/haskell/haskell-data-ordlist/haskell-data-ordlist.SlackBuild b/haskell/haskell-data-ordlist/haskell-data-ordlist.SlackBuild index 778746e02c3bb..1020e4d9dc2d7 100644 --- a/haskell/haskell-data-ordlist/haskell-data-ordlist.SlackBuild +++ b/haskell/haskell-data-ordlist/haskell-data-ordlist.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 |