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

Antonio Rojas arojas at archlinux.org
Tue Oct 8 20:24:59 UTC 2019


    Date: Tuesday, October 8, 2019 @ 20:24:59
  Author: arojas
Revision: 364191

Fix quoting

Modified:
  kexec-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2019-10-08 20:24:18 UTC (rev 364190)
+++ PKGBUILD	2019-10-08 20:24:59 UTC (rev 364191)
@@ -13,7 +13,7 @@
 license=('GPL2')
 
 build() {
-  cd $srcdir/$pkgname
+  cd $pkgname
   ./bootstrap
   ./configure --prefix=/usr --sbindir=/usr/bin --without-lzma
   make
@@ -20,9 +20,9 @@
 }
 
 package() {
-  cd $srcdir/$pkgname
-  make DESTDIR=$pkgdir install
-  install -D -m644 kexec/kexec.8 $pkgdir/usr/share/man/man8/kexec.8
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+  install -D -m644 kexec/kexec.8 "$pkgdir"/usr/share/man/man8/kexec.8
 }
 
 md5sums=('SKIP')



More information about the arch-commits mailing list