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

Sven-Hendrik Haase svenstaro at archlinux.org
Fri Aug 28 07:50:35 UTC 2020


    Date: Friday, August 28, 2020 @ 07:50:34
  Author: svenstaro
Revision: 690142

Fix variable quoting

Modified:
  scummvm-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2020-08-28 07:49:51 UTC (rev 690141)
+++ PKGBUILD	2020-08-28 07:50:34 UTC (rev 690142)
@@ -30,11 +30,11 @@
 package() {
   cd ${pkgname}-${pkgver}
 
-  install -d ${pkgdir}/usr/bin
+  install -d "${pkgdir}"/usr/bin
 
-  make DESTDIR=${pkgdir} install
+  make DESTDIR="${pkgdir}" install
 
-  install -Dm 644 README ${pkgdir}/usr/share/doc/scummvm-tools/README
-  install -Dm 644 convert_dxa.sh ${pkgdir}/usr/share/doc/scummvm-tools/samples/convert_dxa.sh
+  install -Dm 644 README "${pkgdir}"/usr/share/doc/scummvm-tools/README
+  install -Dm 644 convert_dxa.sh "${pkgdir}"/usr/share/doc/scummvm-tools/samples/convert_dxa.sh
 }
 #vim: sw=2 ts=2 et:



More information about the arch-commits mailing list