[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-stable] [Qemu-trivial] [PATCH] po/Makefile: Fix source path fo
From: |
Stefan Weil |
Subject: |
Re: [Qemu-stable] [Qemu-trivial] [PATCH] po/Makefile: Fix source path for in-tree builds |
Date: |
Sun, 27 Apr 2014 12:25:44 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux i686; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 |
Am 27.04.2014 11:37, schrieb Michael Tokarev:
>
> How about moving it below inclusion of config-host.mak and using something
> like
>
> SRC_PATH ?= $(realpath ..)
>
> ? I dunno how gnu'ish this construct is... :)
>
>
> However, I think I've a better fix for this:
>
> Author: Michael Tokarev <address@hidden>
> Date: Sun Apr 27 13:32:07 2014 +0400
>
> po/Makefile: fix $SRC_PATH reference
>
> The rule for messages.po appears to be slightly wrong.
> Move the `cd' command within parens.
>
> Signed-off-by: Michael Tokarev <address@hidden>
> Cc: Stefan Weil <address@hidden>
> Signed-off-by: Michael Tokarev <address@hidden>
>
> diff --git a/po/Makefile b/po/Makefile
> index 705166e..669f865 100644
> --- a/po/Makefile
> +++ b/po/Makefile
> @@ -37,8 +37,8 @@ install: $(OBJS)
> $(call quiet-command, msgfmt -o $@ $<, " GEN $@")
>
> $(PO_PATH)/messages.po: $(SRC_PATH)/ui/gtk.c
> - $(call quiet-command, cd $(SRC_PATH) && \
> - (xgettext -o - --from-code=UTF-8 --foreign-user \
> + $(call quiet-command, ( cd $(SRC_PATH) && \
> + xgettext -o - --from-code=UTF-8 --foreign-user \
> --package-name=QEMU --package-version=$(VERSION) \
> address@hidden -k_ -C ui/gtk.c | \
> sed -e s/CHARSET/UTF-8/) >$@, " GEN $@")
>
>
> Note the already existing parens () -- it looks like this is in order to
> run commands within a subshell (with its own current directory) but still
> have correct output redirection.
>
> If you don't have objections, I'll apply my version (it also fixes the issue).
>
> Thanks,
>
> /mjt
>
> Thanks,
>
> /mjt
>
Tested-by: Stefan Weil <address@hidden>
Cheers,
Stefan