Re: Could not run generate_unaccent_rules.py script when update unicode - Mailing list pgsql-hackers

From Michael Paquier
Subject Re: Could not run generate_unaccent_rules.py script when update unicode
Date
Msg-id ZRNxRzUtDL9dpt-K@paquier.xyz
Whole thread Raw
In response to Could not run generate_unaccent_rules.py script when update unicode  (Japin Li <japinli@hotmail.com>)
Responses Re: Could not run generate_unaccent_rules.py script when update unicode
List pgsql-hackers
On Tue, Sep 26, 2023 at 10:43:40AM +0800, Japin Li wrote:
> # Allow running this even without --with-python
> PYTHON ?= python
>
> $(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,$^) >$@
>
> It use python to run generate_unaccent_rules.py, However, the ?= operator in
> Makefile only check variable is defined or not, but do not check variable is
> empty.  Since the PYTHON is defined in src/Makefile.global, so here PYTHON
> get empty when without --with-ptyhon.

I am not sure that many people run this script frequently so that may
not be worth adding a check for a defined, still empty or incorrect
value, but..  If you were to change the Makefile we use in this path,
how are you suggesting to change it?
--
Michael

Attachment

pgsql-hackers by date:

Previous
From: Michael Paquier
Date:
Subject: Re: XLog size reductions: Reduced XLog record header size for PG17
Next
From: Tom Lane
Date:
Subject: Re: Annoying build warnings from latest Apple toolchain