[arch-commits] Commit in libgcrypt/trunk (PKGBUILD)

Andreas Radke andyrtr at archlinux.org
Mon Sep 23 19:50:50 UTC 2019


    Date: Monday, September 23, 2019 @ 19:50:49
  Author: andyrtr
Revision: 363309

fix quoting

Modified:
  libgcrypt/trunk/PKGBUILD

----------+
 PKGBUILD |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2019-09-23 19:49:35 UTC (rev 363308)
+++ PKGBUILD	2019-09-23 19:50:49 UTC (rev 363309)
@@ -22,7 +22,7 @@
 options=(!makeflags)
 
 prepare() {
-  cd ${pkgname}-${pkgver}
+  cd "${pkgname}"-${pkgver}
   # tests fail due to systemd+libseccomp preventing memory syscalls when building in chroots
   #  t-secmem: line 176: gcry_control (GCRYCTL_INIT_SECMEM, pool_size, 0) failed: General error
   #  FAIL: t-secmem
@@ -34,7 +34,7 @@
 }
 
 build() {
-  cd ${pkgname}-${pkgver}
+  cd "${pkgname}"-${pkgver}
   ./configure --prefix=/usr \
 	--disable-static \
 	--disable-padlock-support
@@ -42,11 +42,11 @@
 }
 
 check() {
-  cd ${pkgname}-${pkgver}
+  cd "${pkgname}"-${pkgver}
   make check
 }
 
 package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
+  cd "${pkgname}"-${pkgver}
+  make DESTDIR="${pkgdir}" install
 }



More information about the arch-commits mailing list