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

Christian Hesse eworm at archlinux.org
Sat Sep 28 21:50:27 UTC 2019


    Date: Saturday, September 28, 2019 @ 21:50:25
  Author: eworm
Revision: 512047

fix unquoted variables

Modified:
  xalan-c/trunk/PKGBUILD

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

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2019-09-28 21:49:18 UTC (rev 512046)
+++ PKGBUILD	2019-09-28 21:50:25 UTC (rev 512047)
@@ -16,15 +16,14 @@
             'SKIP')
 
 build() {
-  export XALANCROOT=${srcdir}/$pkgname-$pkgver/c
-  cd $pkgname-$pkgver/c
+  export XALANCROOT="${srcdir}/$pkgname-$pkgver/c"
+  cd "$pkgname-$pkgver/c"
 
   ./runConfigure -p linux -c gcc -x g++ -P/usr
-#  ./configure --prefix=/usr
   make -j1
 }
 
 package() {
-  cd $pkgname-$pkgver/c
+  cd "$pkgname-$pkgver/c"
   make DESTDIR="$pkgdir" install
 }



More information about the arch-commits mailing list