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>
This commit is contained in:
Khem Raj
2020-09-02 09:50:56 -07:00
parent afe3b35c84
commit 098a963a0e
+1 -1
View File
@@ -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
}