diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2022-07-13 14:29:10 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2022-07-13 14:29:10 -0400 |
commit | 54ba2f06236a7588433a5825134759ed798eccbf (patch) | |
tree | c805410c6f5560b666b6cb46ef51333a90fb62ca /src/pl/plperl | |
parent | 27d2693187d1bcf2563ee7142ba37d4788c8d52b (diff) | |
download | postgresql-54ba2f06236a7588433a5825134759ed798eccbf.tar.gz postgresql-54ba2f06236a7588433a5825134759ed798eccbf.zip |
Revert "Use wildcards instead of manually-maintained file lists in */nls.mk."
This reverts commit 617d69141220f277170927e03a19d2f1b77aed77.
While I still think the basic idea is attractive, we need to sort
out what happens with built .c files, and there also seem to be
VPATH issues.
Diffstat (limited to 'src/pl/plperl')
-rw-r--r-- | src/pl/plperl/nls.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pl/plperl/nls.mk b/src/pl/plperl/nls.mk index 88cc0065004..8c41bfac7a9 100644 --- a/src/pl/plperl/nls.mk +++ b/src/pl/plperl/nls.mk @@ -1,5 +1,5 @@ # src/pl/plperl/nls.mk CATALOG_NAME = plperl -GETTEXT_FILES = $(wildcard *.c) +GETTEXT_FILES = plperl.c SPI.c GETTEXT_TRIGGERS = $(BACKEND_COMMON_GETTEXT_TRIGGERS) GETTEXT_FLAGS = $(BACKEND_COMMON_GETTEXT_FLAGS) |