From 098a963a0e3d37bc60d7989212ba46c68c7cc4bb Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 2 Sep 2020 09:50:56 -0700 Subject: [PATCH] tmux: Add -p option to mkdir This help avoiding a build failure when this dir already exists Signed-off-by: Khem Raj --- meta-oe/recipes-extended/tmux/tmux_3.1b.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-extended/tmux/tmux_3.1b.bb b/meta-oe/recipes-extended/tmux/tmux_3.1b.bb index fde0ed4acf..f5078e9236 100644 --- a/meta-oe/recipes-extended/tmux/tmux_3.1b.bb +++ b/meta-oe/recipes-extended/tmux/tmux_3.1b.bb @@ -21,5 +21,5 @@ PACKAGECONFIG[utempter] = "ac_cv_header_utempter_h=yes,ac_cv_header_utempter_h=n do_configure_prepend() { # The 'compat' directory is needed for output during the build but it's # not automatically created when building outside the source directory. - mkdir ${B}/compat + mkdir -p ${B}/compat }