mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-05 02:50:46 +00:00
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:
@@ -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 () {
|
||||
|
||||
@@ -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 () {
|
||||
|
||||
Reference in New Issue
Block a user