diff options
author | Wenchao Xia <xiawenc@linux.vnet.ibm.com> | 2012-11-24 17:27:18 +0800 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-11-24 20:03:04 +0000 |
commit | a85903ff80f9bfa6390069856a8ec706b0b5ad5a (patch) | |
tree | 3c2cc0029db79304555e7523ea574bc6cf34b0ab /Makefile | |
parent | 89c9bc3d147fdaa932db99b0463b4af1d3e7cda1 (diff) |
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>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -286,7 +286,7 @@ distclean: clean for d in $(TARGET_DIRS) $(QEMULIBS); do \ rm -rf $$d || exit 1 ; \ 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 \ ar de en-us fi fr-be hr it lv nl pl ru th \ |