Re: make update-po@master stops at pg_upgrade

From: Peter Eisentraut <peter(dot)eisentraut(at)enterprisedb(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>
Cc: Kyotaro Horiguchi <horikyota(dot)ntt(at)gmail(dot)com>, pgsql-hackers(at)lists(dot)postgresql(dot)org
Subject: Re: make update-po@master stops at pg_upgrade
Date: 2022-07-13 18:24:47
Message-ID: 7a03b42b-9c93-7d5a-fb26-c468f762f4ee@enterprisedb.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On 13.07.22 19:41, Tom Lane wrote:
> Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org> writes:
>> Hmm, I got this failure:
>> /usr/bin/xgettext: no se especificó el fichero de entrada
>
> Hmm ... are you doing this in a VPATH setup? Does it help
> if you make the entry be
>
> GETTEXT_FILES = $(wildcard $(srcdir)/*.c)
>
> I'd supposed we didn't need to be careful about that, because
> I saw uses of $(wildcard) without it ... but I now see other uses
> with.

Note that we have this in nls-global.mk which tries to avoid having the
vpath details sneak into the output:

po/$(CATALOG_NAME).pot: $(GETTEXT_FILES) $(MAKEFILE_LIST)
# Change to srcdir explicitly, don't rely on $^. That way we get
# consistent #: file references in the po files.
...
$(XGETTEXT) -D $(srcdir) -D . -n $(addprefix -k, $(GETTEXT_TRIGGERS)) $(addprefix --flag=, $(GETTEXT_FLAGS)) $(GETTEXT_FILES)

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Dmitry Koval 2022-07-13 18:27:44 Re: Add SPLIT PARTITION/MERGE PARTITIONS commands
Previous Message Tom Lane 2022-07-13 18:19:48 Re: make update-po@master stops at pg_upgrade