| Submitter | Wayne Xia |
|---|---|
| Date | Nov. 16, 2012, 1:31 p.m. |
| Message ID | <1353072718-29159-2-git-send-email-xiawenc@linux.vnet.ibm.com> |
| Download | mbox | patch |
| Permalink | /patch/199591/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/Makefile b/Makefile index 81c660f..f0bb845 100644 --- a/Makefile +++ b/Makefile @@ -278,7 +278,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 \
Currently Makefile test if pixman have configure log, but it will return error if that file do not exist. This patch fix it. v2: print out the command. Signed-off-by: Wenchao Xia <xiawenc@linux.vnet.ibm.com> --- Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)