[arch-commits] Commit in python-hs-dbus-signature/trunk (PKGBUILD)

Frederik Schwan freswa at archlinux.org
Fri Aug 28 12:57:48 UTC 2020


    Date: Friday, August 28, 2020 @ 12:57:47
  Author: freswa
Revision: 690811

fix unquoted variables

Modified:
  python-hs-dbus-signature/trunk/PKGBUILD

----------+
 PKGBUILD |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2020-08-28 12:57:43 UTC (rev 690810)
+++ PKGBUILD	2020-08-28 12:57:47 UTC (rev 690811)
@@ -15,16 +15,16 @@
 sha256sums=('1fa4f8cea63cabac761b32fa851cc1e85abc60a354c55fbce133412b89ee6dbd')
 
 check() {
-    cd $srcdir/${_pkgname}-${pkgver}
+    cd ${_pkgname}-${pkgver}
     nosetests
 }
  
 build() {
-    cd $srcdir/${_pkgname}-${pkgver}
+    cd ${_pkgname}-${pkgver}
     python setup.py build
 }
 
 package() {
-    cd $srcdir/${_pkgname}-${pkgver}
-    python setup.py install --root="$pkgdir" --optimize=1 
+    cd ${_pkgname}-${pkgver}
+    python setup.py install --root="${pkgdir}" --optimize=1 
 }



More information about the arch-commits mailing list