pgsql: Un-break contrib install with llvm.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Un-break contrib install with llvm.
Date: 2018-04-28 18:45:45
Message-ID: E1fCUqv-0000S4-7O@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Un-break contrib install with llvm.

Apparently $(foreach ... $(call install_llvm_module,...)) doesn't work
too well without a blank line ending the install_llvm_module macro.
The previous coding hackishly dodged this problem with some parens,
but that's not really a good solution because make misunderstands
where the command boundaries are that way.

Discussion: https://postgr.es/m/20180428073935.GB1736@paquier.xyz

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/f2bb32dbd6af8ec3eb99308289a83b1ff3ca6514

Modified Files
--------------
src/Makefile.global.in | 4 ++++
1 file changed, 4 insertions(+)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2018-04-28 19:27:20 pgsql: Clarify handling of special-case values in bootstrap catalog dat
Previous Message Tom Lane 2018-04-28 18:03:02 pgsql: Minor cleanups for install_llvm_module/uninstall_llvm_module Mak