]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Fix for make unportability
authorPeter Eisentraut <peter@eisentraut.org>
Wed, 13 Jul 2022 07:15:01 +0000 (09:15 +0200)
committerPeter Eisentraut <peter@eisentraut.org>
Wed, 13 Jul 2022 07:15:01 +0000 (09:15 +0200)
commit58b4f366c0c4b3a5d65269f01150e4ec04cb20a2
tree0053b0bceaf6e0d61c38e834072a8da40d826a1a
parent88dad06b47eb80f699211c9b0b7a1c6d9016ad19
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.
src/nls-global.mk