From c31de5be5fbadda1b692ca6e59c2e4b4132a4d24 Mon Sep 17 00:00:00 2001 From: Jan-Hendrik Frintrop Date: Tue, 18 Jul 2017 09:05:56 +0200 Subject: [PATCH] Fix setProvides Provided packages can also be a list of packages. --- src/wdm/debian/control/StandardFile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wdm/debian/control/StandardFile.php b/src/wdm/debian/control/StandardFile.php index 253642e..fd62f79 100644 --- a/src/wdm/debian/control/StandardFile.php +++ b/src/wdm/debian/control/StandardFile.php @@ -124,7 +124,7 @@ class StandardFile public function setProvides($provides) { - return $this->_setProperty("Provides", $provides); + return $this->_setProperty("Provides", $this->_transformList($provides)); } public function setDescription($description)