From 172393faa0dcc64e30768b74625180c09b7700a2 Mon Sep 17 00:00:00 2001 From: Li Xi Date: Thu, 29 Jul 2021 08:59:11 +0800 Subject: [PATCH] EX-3562 build: failed to find lipe dir A dollar sign is missing in the script of contrib/lbuild/lbuild so lipe dir is not able to be found. Test-Parameters: trivial Change-Id: I3de918d7e8d11123e5ee8672b089220587ed6756 Signed-off-by: Li Xi Reviewed-on: https://review.whamcloud.com/44418 Tested-by: jenkins Tested-by: Maloo Reviewed-by: Minh Diep Reviewed-by: Andreas Dilger --- contrib/lbuild/lbuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/lbuild/lbuild b/contrib/lbuild/lbuild index efa69c5..7c9a816 100755 --- a/contrib/lbuild/lbuild +++ b/contrib/lbuild/lbuild @@ -919,7 +919,7 @@ build_lipe() { # lipe exist in one uppper directory if [[ -d ${TOPDIR}/../lipe ]]; then pushd ${TOPDIR}/../lipe > /dev/null - elif [[ -d {TOPDIR}/lipe ]]; then + elif [[ -d ${TOPDIR}/lipe ]]; then pushd ${TOPDIR}/lipe > /dev/null else fatal 1 "Can not find lipe source" -- 1.8.3.1