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

Jürgen Hötzel juergen at archlinux.org
Fri Jul 10 19:11:05 UTC 2020


    Date: Friday, July 10, 2020 @ 19:11:05
  Author: juergen
Revision: 391541

Fix unquoted variables which break building the package in certain scenarios

Modified:
  bigloo/trunk/PKGBUILD

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

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2020-07-10 18:32:33 UTC (rev 391540)
+++ PKGBUILD	2020-07-10 19:11:05 UTC (rev 391541)
@@ -53,7 +53,7 @@
   make DESTDIR="${pkgdir}" install install-bee
   make -C manuals DESTDIR="${pkgdir}" install-bee
 
-  rm ${pkgdir}/usr/bin/{bglafile,bigloo}.sh
+  rm "${pkgdir}/usr/bin/{bglafile,bigloo}.sh"
 
   # Remove references to the build root
   sed -e "s|^BOOTDIR=.*|BOOTDIR=/usr|g" \
@@ -63,6 +63,6 @@
       -e "s|^BGLBUILDLIBDIR=.*|BGLBUILDLIBDIR=/usr/lib/bigloo/${pkgver}|g" \
       -e "s|^\(BIGLOO=.*\)\.sh|\1|" \
       -e "s|^\(BGL.*=.*\)\.sh|\1|" \
-      -i  ${pkgdir}/usr/lib/bigloo/${pkgver}/Makefile.config
+      -i  "${pkgdir}/usr/lib/bigloo/${pkgver}/Makefile.config"
 
 }



More information about the arch-commits mailing list