Skip to content

Commit 10c58ba

Browse files
committed
go.sh: Fix where we look for cmake dir
If we are building on MacOS we should look at GITDIR and not SDK_NG_HOME. Signed-off-by: Kumar Gala <[email protected]>
1 parent 41659ff commit 10c58ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

go.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ for t in ${TARGETS}; do
5050
./meta-zephyr-sdk/scripts/meta-zephyr-sdk-build.sh tools;
5151
mv ./meta-zephyr-sdk/scripts/toolchains/zephyr-sdk-${unameMachine}-hosttools-standalone-0.9.sh .
5252
elif [ "${t}" = "cmake" ]; then
53-
tar -jcvf ${t}.${unameMachine}.tar.bz2 -C ${SDK_NG_HOME} cmake;
53+
tar -jcvf ${t}.${unameMachine}.tar.bz2 -C ${GITDIR} cmake;
5454
fi
5555
done
5656

0 commit comments

Comments
 (0)