OPENOCD: allow empty commit

Sometimes the source directory is not cleaned but
everything is already committed. Then, git commit will fail
and so the build. Allow empty commit to bypass that issue.

Change-Id: Ib9b98dfc1b27ae74d32195b0e0e6e5aca7dd1f30
Signed-off-by: Lionel VITTE <lionel.vitte@st.com>
This commit is contained in:
Lionel VITTE 2023-02-02 10:26:48 +01:00 committed by Romuald Jeanne
parent 53b6894975
commit 85b8afb05a
1 changed files with 1 additions and 1 deletions

View File

@ -19,5 +19,5 @@ SRC_URI += ""
# To be removed after a new jimtcl release get used by openocd.
do_configure:prepend() {
git add jimtcl
git commit -m "Update jimtcl"
git commit --allow-empty -m "Update jimtcl"
}