mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-11 16:00:50 -07:00
Build system fix distclean error for pixman
Currently Makefile test if pixman have configure log, but the script directly return error if that file do not exist. This patch fix it. Signed-off-by: Wenchao Xia <xiawenc@linux.vnet.ibm.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
89c9bc3d14
commit
a85903ff80
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
|
@ -286,7 +286,7 @@ distclean: clean
|
||||||
for d in $(TARGET_DIRS) $(QEMULIBS); do \
|
for d in $(TARGET_DIRS) $(QEMULIBS); do \
|
||||||
rm -rf $$d || exit 1 ; \
|
rm -rf $$d || exit 1 ; \
|
||||||
done
|
done
|
||||||
test -f pixman/config.log && make -C pixman distclean
|
if test -f pixman/config.log; then make -C pixman distclean; fi
|
||||||
|
|
||||||
KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
|
KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
|
||||||
ar de en-us fi fr-be hr it lv nl pl ru th \
|
ar de en-us fi fr-be hr it lv nl pl ru th \
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue