On 5 September 2012 20:18, Anthony Liguori <aligu...@us.ibm.com> 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