From 9b0c0178bac0bf0bfa4017e41fcf45e0baedcc0c Mon Sep 17 00:00:00 2001 From: Alexandru Tiniuc Date: Wed, 30 Aug 2017 14:20:02 +0100 Subject: [PATCH] Added dependency to Bash If Bash is not included by any other recipe, the recipe fails at the QA check. This commit adds Bash to the list of dependencies, preventing this issue. Signed-off-by: Alexandru Tiniuc Signed-off-by: Bruce Ashfield --- recipes-containers/singularity/singularity_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-containers/singularity/singularity_git.bb b/recipes-containers/singularity/singularity_git.bb index d0fbeb95..8b977400 100644 --- a/recipes-containers/singularity/singularity_git.bb +++ b/recipes-containers/singularity/singularity_git.bb @@ -2,7 +2,7 @@ # Singularity build / config: read up on the dev-so test for more info) INSANE_SKIP_${PN} += "dev-so" -RDEPENDS_${PN} += "glibc python3 ca-certificates openssl" +RDEPENDS_${PN} += "glibc python3 ca-certificates openssl bash" # Singularity expects to find python3 under the name python, therefore both # cannot be installed at the same time. RCONFLICTS_${PN} = "python"