summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhil Ruffwind2017-11-30 08:40:44 -0500
committerPhil Ruffwind2017-11-30 08:40:44 -0500
commit6ea3f327988ae569cc1543f18f9fc6ad9ba762d0 (patch)
tree3e08f5f1fa2086eb7b57998ddccddad7b96645a4
parent2015aeb4dc5aa58e47fe07b11dede05bd11e3837 (diff)
downloadaur-6ea3f327988ae569cc1543f18f9fc6ad9ba762d0.tar.gz
Fix quoting in wrapper scripts
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD4
2 files changed, 4 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e4d00738dc77..0dd258807908 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Sun Oct 22 22:33:08 UTC 2017
+# Thu Nov 30 13:40:44 UTC 2017
pkgbase = ghc-pristine
pkgdesc = Symlinks to GHC with only boot libs, useful for building static binaries
pkgver = 8.2.1
- pkgrel = 3
+ pkgrel = 4
url = https://www.haskell.org/ghc/
arch = any
license = custom
diff --git a/PKGBUILD b/PKGBUILD
index d0a770b7b644..4428e6777ad7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Phil Ruffwind <rf@rufflewind.com>
pkgname=ghc-pristine
pkgver=8.2.1
-pkgrel=3
+pkgrel=4
pkgdesc="Symlinks to GHC with only boot libs, useful for building static binaries"
arch=(any)
url=https://www.haskell.org/ghc/
@@ -39,7 +39,7 @@ package() {
if [ "$head" = "#!" ]; then
n=`basename "$f"`
cp -p "$f" "$pkgdir$prefix/bin/"
- sed -i 's?topdir=.*?topdir="'"$prefix"'"/lib?;s?exec "/usr/bin/ghc?exec "'"$prefix"'"/bin/ghc?' "$pkgdir$prefix/bin/$n"
+ sed -i 's?topdir=.*?topdir="'"$prefix"'"/lib?;s?exec "/usr/bin/ghc?exec "'"$prefix"'/bin/ghc?' "$pkgdir$prefix/bin/$n"
fi
fi
;;