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

Frederik Schwan freswa at archlinux.org
Fri Aug 28 13:06:17 UTC 2020


    Date: Friday, August 28, 2020 @ 13:06:17
  Author: freswa
Revision: 690832

fix unquoted variables

Modified:
  raw-thumbnailer/trunk/PKGBUILD

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

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2020-08-28 13:06:03 UTC (rev 690831)
+++ PKGBUILD	2020-08-28 13:06:17 UTC (rev 690832)
@@ -13,7 +13,7 @@
 sha1sums=('f34012062c0b1eaa10525722c36bd027b11ade2e')
 
 prepare() {
-	cd ${srcdir}/$pkgname-$pkgver
+	cd $pkgname-$pkgver
 
 	# Fix build with libopenraw 0.1.0
 	sed -ri 's/(libopenraw(-gnome)?)-1\.0/\1-0.1/' configure.ac
@@ -21,7 +21,7 @@
 }
 
 build() {
-	cd ${srcdir}/$pkgname-$pkgver
+	cd $pkgname-$pkgver
 
 	./configure --prefix=/usr
 	make
@@ -28,7 +28,7 @@
 }
 
 package() {
-	cd ${srcdir}/$pkgname-$pkgver
+	cd $pkgname-$pkgver
 
 	make DESTDIR="$pkgdir" install
 }



More information about the arch-commits mailing list