From 02656602e50399259efc78c1483d192e17276ace Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Mon, 18 Mar 2019 03:14:42 -0400 Subject: opkbuild: Fix quotes in ob-* commands Bug introduced in commit ab654dad. --- (limited to 'src') diff --git a/src/opkbuild.sh b/src/opkbuild.sh index 3fedfe7..7e5aa11 100644 --- a/src/opkbuild.sh +++ b/src/opkbuild.sh @@ -337,10 +337,10 @@ build() '') ../build build && ${opt_uid0_cmd} -- ../build install && - ${opt_uid0_cmd} -- '${BINDIR}/ob-installdocs' && - ${opt_uid0_cmd} -- '${BINDIR}/ob-gencontrol' && - ${opt_uid0_cmd} -- '${BINDIR}/ob-buildopk' && - ${opt_uid0_cmd} -- '${BINDIR}/ob-genchanges' || + ${opt_uid0_cmd} -- "${BINDIR}/ob-installdocs" && + ${opt_uid0_cmd} -- "${BINDIR}/ob-gencontrol" && + ${opt_uid0_cmd} -- "${BINDIR}/ob-buildopk" && + ${opt_uid0_cmd} -- "${BINDIR}/ob-genchanges" || return 1 ;; 'install'|'install-'*) -- cgit v0.9.1