From 849d78b6c54fa12a5dc1933c76a900967f91dbe5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=9D=B4=EC=84=B1=EC=9E=AC/On-Device=20Lab=28SR=29/Princip?= =?utf8?q?al=20Engineer/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Mon, 7 Oct 2019 15:10:58 +0900 Subject: [PATCH] Fix `./nnfw configure` command (#7939) - Added INSTALL_PATH creation to satisfy prerequisites for the `./nnfw install` command. Signed-off-by: Sung-Jae Lee --- infra/nnfw/command/configure | 3 +++ 1 file changed, 3 insertions(+) diff --git a/infra/nnfw/command/configure b/infra/nnfw/command/configure index 2f47dfe..4ebf844 100644 --- a/infra/nnfw/command/configure +++ b/infra/nnfw/command/configure @@ -8,5 +8,8 @@ INSTALL_PATH="${NNFW_INSTALL_PREFIX:-${INSTALL_ALIAS}}" # Create "BUILD_PATH" mkdir -p "${BUILD_PATH}" +# Create "INSTALL_PATH" +mkdir -p "${INSTALL_PATH}" + cd "${BUILD_PATH}" cmake "${NNFW_PROJECT_PATH}"/infra/nnfw -DCMAKE_INSTALL_PREFIX="${INSTALL_PATH}" "$@" -- 2.7.4