mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 02:49:12 +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:
parent
628084d6b0
commit
73c35829b4
@ -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 () {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user