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

Frederik Schwan freswa at archlinux.org
Fri Aug 28 11:51:01 UTC 2020


    Date: Friday, August 28, 2020 @ 11:51:01
  Author: freswa
Revision: 690607

fix unquoted variables

Modified:
  aspell-uk/trunk/PKGBUILD

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

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2020-08-28 11:51:00 UTC (rev 690606)
+++ PKGBUILD	2020-08-28 11:51:01 UTC (rev 690607)
@@ -24,10 +24,10 @@
 
 build() {
   # needed when using a source package from ispell-uk project
-  cd ${srcdir}/spell-uk-$pkgver
+  cd "${srcdir}"/spell-uk-$pkgver
   make
 
-  cd ${srcdir}/aspell6-uk-${_ftpver}-0
+  cd "${srcdir}"/aspell6-uk-${_ftpver}-0
   ./configure
   make
 
@@ -37,7 +37,7 @@
 }
 
 package() {
-  cd ${srcdir}/aspell6-uk-${_ftpver}-0
+  cd "${srcdir}"/aspell6-uk-${_ftpver}-0
 
   make DESTDIR="$pkgdir" install
 }



More information about the arch-commits mailing list