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

Frederik Schwan freswa at archlinux.org
Fri Aug 28 12:14:54 UTC 2020


    Date: Friday, August 28, 2020 @ 12:14:54
  Author: freswa
Revision: 690670

fix unquoted variables

Modified:
  ecryptfs-utils/trunk/PKGBUILD

----------+
 PKGBUILD |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2020-08-28 12:14:40 UTC (rev 690669)
+++ PKGBUILD	2020-08-28 12:14:54 UTC (rev 690670)
@@ -21,18 +21,18 @@
 validpgpkeys=('E2D9E1C5F9F5D59291F4607D95E64373F1529469')
 
 prepare() {
-  cd "${pkgname}-${pkgver}"
-  patch -Np0 -i $srcdir/openssl-1.1.x.patch
+  cd ${pkgname}-${pkgver}
+  patch -Np0 -i "${srcdir}"/openssl-1.1.x.patch
 }
 
 build() {
-  cd "${pkgname}-${pkgver}"
+  cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr --with-pamdir=/usr/lib/security PYTHON=python2
   make
 }
 
 package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="$pkgdir/" rootsbindir='/usr/bin' install
-  chmod +s "$pkgdir/usr/bin/mount.ecryptfs_private"
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}"/ rootsbindir='/usr/bin' install
+  chmod +s "${pkgdir}"/usr/bin/mount.ecryptfs_private
 }



More information about the arch-commits mailing list