libplist: make sure rm doesn't fail on nonexistent file

I've seen this on a rebuild:
| DEBUG: Python function autotools_aclocals finished
| DEBUG: Executing shell function do_configure
| rm: cannot remove '/home/flk/poky/build-hypr/tmp/work/corei7-64-poky-linux/libplist/2.3.0+git/git/m4/ax_python_devel.m4': No such file or directory

This was fixed after '-c cleansstate' but just in case

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Markus Volk 2024-01-08 09:12:21 +01:00 committed by Khem Raj
parent 628084d6b0
commit 73c35829b4
No known key found for this signature in database
GPG Key ID: BB053355919D3314
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ CVE_STATUS_LIBLIST = " \
"
do_configure:prepend() {
rm ${S}/m4/ax_python_devel.m4
rm -f ${S}/m4/ax_python_devel.m4
}
do_install:append () {

View File

@ -24,7 +24,7 @@ CVE_STATUS_LIBLIST = " \
"
do_configure:prepend() {
rm ${S}/m4/ax_python_devel.m4
rm -f ${S}/m4/ax_python_devel.m4
}
do_install:append () {