Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit641db60

Browse files
committed
unaccent: Tweak value of PYTHON when building without Python support
As coded, the module's Makefile would fail to set a value for PYTHON asit checked if the variable is defined. When compiling without--with-python, PYTHON is defined and set to an empty value, so theexisting check is not able to do its work.This commit switches the rule to check if the value is empty rather thandefined, allowing the generation of unaccent.rules even if --with-pythonis not used as long as "python" exists. BISON and FLEX do the same inpgxs.mk, for instance.Thinko inf85a485.Author: Japin LiDiscussion:https://postgr.es/m/MEYP282MB1669F86C0DC7B4DC48489CB0B6C3A@MEYP282MB1669.AUSP282.PROD.OUTLOOK.COMBackpatch-through: 13
1 parente73d6a0 commit641db60

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

‎contrib/unaccent/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ endif
3030
update-unicode:$(srcdir)/unaccent.rules
3131

3232
# Allow running this even without --with-python
33-
PYTHON ?= python
33+
ifeq ($(PYTHON),)
34+
PYTHON = python
35+
endif
3436

3537
$(srcdir)/unaccent.rules: generate_unaccent_rules.py ../../src/common/unicode/UnicodeData.txt Latin-ASCII.xml
3638
$(PYTHON)$< --unicode-data-file$(word 2,$^) --latin-ascii-file$(word 3,$^)>$@

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp