From ef0824763071cd38af565f5085d1c82f9d5fb9c6 Mon Sep 17 00:00:00 2001 From: Toyam Cox Date: Fri, 24 Aug 2018 10:31:45 -0400 Subject: [PATCH] libkcapi: fix quoting error found by dxpb In sh, if you set a variable like: depends=abcdef>=ghi_jkl then you will get a file: =ghi_jkl in the current working directory. This suggests the >= requirement was never enforced for this package, but now it can be. To replicate this problem: << EOF ./xbps-src show-pkg-var libkcapi-devel depends EOF --- srcpkgs/libkcapi/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libkcapi/template b/srcpkgs/libkcapi/template index d9dbfed353..6c6cb78693 100644 --- a/srcpkgs/libkcapi/template +++ b/srcpkgs/libkcapi/template @@ -25,7 +25,7 @@ post_install() { } libkcapi-devel_package() { - depends=${sourcepkg}>=${version}_${revision} + depends="${sourcepkg}>=${version}_${revision}" short_desc+=" - Development files" pkg_install() { vmove usr/include