pgsql: Fix for make unportability

Поиск
Список
Период
Сортировка
От Peter Eisentraut
Тема pgsql: Fix for make unportability
Дата
Msg-id E1oBWdd-002Yjy-Lt@gemulon.postgresql.org
обсуждение исходный текст
Ответы Re: pgsql: Fix for make unportability  (Alvaro Herrera <alvherre@alvh.no-ip.org>)
Список pgsql-committers
Fix for make unportability

88dad06b47eb80f699211c9b0b7a1c6d9016ad19 contains a make $(shell)
construct that apparently confuses older GNU make versions (possibly
because of the # inside the shell command?).  This construct, which
would allow # comments inside LINGUAS files, was adapted from gettext
recommendations, but we don't actually need that functionality, so
sidestep this whole issue by just using plain "cat".

In passing, make this code work with vpath.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/58b4f366c0c4b3a5d65269f01150e4ec04cb20a2

Modified Files
--------------
src/nls-global.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: NLS: Put list of available languages into LINGUAS files
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: pgsql: Fix for make unportability