aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavol Hanzel <pavol.hanzel@pantheon.tech>2018-12-19 18:20:25 +0100
committerPavol Hanzel <pavol.hanzel@pantheon.tech>2018-12-19 18:20:25 +0100
commitba089324594f450a1b549906ec7fde1ba63a1e89 (patch)
tree2b1eb146d837d55cd8e88f6038a94f05a7de8119
parentd9210004fc0ef104953dd980a199284df7d6af21 (diff)
corrected Makefile (mkdir -p)
Change-Id: If9e33a00bcb250d16b2a9b1e4361b9bde9168557 Signed-off-by: Pavol Hanzel <pavol.hanzel@pantheon.tech>
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0a6c1a1..334822d 100644
--- a/Makefile
+++ b/Makefile
@@ -111,6 +111,6 @@ fixstyle:
@build-root/scripts/checkstyle.sh --fix
build_scvpp:
- @mkdir $(BR)/build-scvpp/;cd $(BR)/build-scvpp;cmake $(WS_ROOT)/src/scvpp/;make install;
+ @mkdir -p $(BR)/build-scvpp/;cd $(BR)/build-scvpp;cmake $(WS_ROOT)/src/scvpp/;make install;
build:
- @mkdir $(BR)/build-plugins/;cd $(BR)/build-plugins/;cmake $(WS_ROOT)/src/plugins/;make install;
+ @mkdir -p $(BR)/build-plugins/;cd $(BR)/build-plugins/;cmake $(WS_ROOT)/src/plugins/;make install;