qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 6/7] gtk: add translation support


From: Peter Maydell
Subject: Re: [Qemu-devel] [PATCH 6/7] gtk: add translation support
Date: Thu, 6 Sep 2012 14:00:24 +0100

On 5 September 2012 20:18, Anthony Liguori <address@hidden> wrote:
> --- a/Makefile
> +++ b/Makefile
> @@ -315,6 +315,9 @@ ifneq ($(BLOBS),)
>                 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x 
> "$(DESTDIR)$(qemu_datadir)"; \
>         done
>  endif
> +ifeq ($(CONFIG_GTK),y)
> +       $(MAKE) -C po $@ || exit 1
> +endif

The "|| exit 1" is only necessary in cases where we're
running make inside a shell for loop or similar. This
looks like it's just a single simple command, so just
       $(MAKE) -C po $@

should suffice.

-- PMM



reply via email to

[Prev in Thread] Current Thread [Next in Thread]