diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2021-05-02 16:36:12 +1200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-05-02 17:21:39 +0700 |
commit | eb8a6fc599dba9863a0c54636f2ebeae6513d85a (patch) | |
tree | 67396cffcd9e2677dbae69486a12e936540606ac /haskell/haskell-OpenGLRaw | |
parent | ffb64041002715f039d47c634aa25fc9d153b431 (diff) |
haskell/haskell-OpenGLRaw: 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-OpenGLRaw')
-rw-r--r-- | haskell/haskell-OpenGLRaw/haskell-OpenGLRaw.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haskell/haskell-OpenGLRaw/haskell-OpenGLRaw.SlackBuild b/haskell/haskell-OpenGLRaw/haskell-OpenGLRaw.SlackBuild index 4784b03cc791..f1ab557a264d 100644 --- a/haskell/haskell-OpenGLRaw/haskell-OpenGLRaw.SlackBuild +++ b/haskell/haskell-OpenGLRaw/haskell-OpenGLRaw.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 |