summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorphyskets2018-07-03 23:10:15 +0530
committerphyskets2018-07-03 23:10:15 +0530
commitd182786df860d14750d57047dba7182c6a86aa45 (patch)
tree65cca513128b108b2d6f1540f917f3ed4aed5c83 /PKGBUILD
parentba40bc24da09405c48134b7d93f16e98710a4e0e (diff)
downloadaur-d182786df860d14750d57047dba7182c6a86aa45.tar.gz
Enclose PATH in quotes
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 199982c6133e..44e1127a39b8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -13,7 +13,7 @@ source=("https://github.com/sourceryinstitute/${pkgname}/releases/download/${pkg
sha256sums=('c8e4ce7ddb851fd3eb981836c9e2e1a5de53afe3da1401971cfaf4114edb3af7')
build() {
- export PATH=/opt/mpich/bin:$PATH
+ export PATH="/opt/mpich/bin:$PATH"
cd "${srcdir}/OpenCoarrays-${pkgver}"
mkdir -p build
cd build
@@ -27,7 +27,7 @@ build() {
}
check() {
- export PATH=/opt/mpich/bin:$PATH
+ export PATH="/opt/mpich/bin:$PATH"
cd "${srcdir}/OpenCoarrays-${pkgver}/build"
ctest
}