diff options
author | Michael Paquier <michael@paquier.xyz> | 2023-09-27 14:40:23 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2023-09-27 14:40:23 +0900 |
commit | 6fc3a138b1e8049a73e48d4b0f1031a1e6e7b8c6 (patch) | |
tree | 76cb57f81508d7500ed215805c1fbf9d819c551c | |
parent | 3aa021b29b0ecdafa518d225fa08b98d7bf5c84e (diff) | |
download | postgresql-6fc3a138b1e8049a73e48d4b0f1031a1e6e7b8c6.tar.gz postgresql-6fc3a138b1e8049a73e48d4b0f1031a1e6e7b8c6.zip |
unaccent: Tweak value of PYTHON when building without Python support
As coded, the module's Makefile would fail to set a value for PYTHON as
it checked if the variable is defined. When compiling without
--with-python, PYTHON is defined and set to an empty value, so the
existing check is not able to do its work.
This commit switches the rule to check if the value is empty rather than
defined, allowing the generation of unaccent.rules even if --with-python
is not used as long as "python" exists. BISON and FLEX do the same in
pgxs.mk, for instance.
Thinko in f85a485f89e2.
Author: Japin Li
Discussion: https://postgr.es/m/MEYP282MB1669F86C0DC7B4DC48489CB0B6C3A@MEYP282MB1669.AUSP282.PROD.OUTLOOK.COM
Backpatch-through: 13
-rw-r--r-- | contrib/unaccent/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/unaccent/Makefile b/contrib/unaccent/Makefile index 652a3e774c0..3ff49ba1e93 100644 --- a/contrib/unaccent/Makefile +++ b/contrib/unaccent/Makefile @@ -26,7 +26,9 @@ endif update-unicode: $(srcdir)/unaccent.rules # Allow running this even without --with-python -PYTHON ?= python +ifeq ($(PYTHON),) +PYTHON = python +endif $(srcdir)/unaccent.rules: generate_unaccent_rules.py ../../src/common/unicode/UnicodeData.txt Latin-ASCII.xml $(PYTHON) $< --unicode-data-file $(word 2,$^) --latin-ascii-file $(word 3,$^) >$@ |