summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2020-09-02 09:50:56 -0700
committerKhem Raj <raj.khem@gmail.com>2020-09-03 07:54:13 -0700
commit098a963a0e3d37bc60d7989212ba46c68c7cc4bb (patch)
treed80ea68996d1f4848ff996469a6bd59d368e1bfd
parentafe3b35c84076e7216d0137af25322edba859777 (diff)
downloadmeta-openembedded-098a963a0e3d37bc60d7989212ba46c68c7cc4bb.tar.gz
tmux: Add -p option to mkdir
This help avoiding a build failure when this dir already exists Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-extended/tmux/tmux_3.1b.bb2
1 files changed, 1 insertions, 1 deletions
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
21do_configure_prepend() { 21do_configure_prepend() {
22 # The 'compat' directory is needed for output during the build but it's 22 # The 'compat' directory is needed for output during the build but it's
23 # not automatically created when building outside the source directory. 23 # not automatically created when building outside the source directory.
24 mkdir ${B}/compat 24 mkdir -p ${B}/compat
25} 25}