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/bin/psql | |
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/bin/psql')
-rw-r--r-- | src/bin/psql/nls.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/bin/psql/nls.mk b/src/bin/psql/nls.mk index 37c1ced20aa..dad5816b9c7 100644 --- a/src/bin/psql/nls.mk +++ b/src/bin/psql/nls.mk @@ -1,6 +1,10 @@ # src/bin/psql/nls.mk CATALOG_NAME = psql -GETTEXT_FILES = $(FRONTEND_COMMON_GETTEXT_FILES) $(wildcard *.c) \ +GETTEXT_FILES = $(FRONTEND_COMMON_GETTEXT_FILES) \ + command.c common.c copy.c crosstabview.c help.c input.c large_obj.c \ + mainloop.c psqlscanslash.c startup.c \ + describe.c sql_help.h sql_help.c \ + tab-complete.c variables.c \ ../../fe_utils/cancel.c ../../fe_utils/print.c ../../fe_utils/psqlscan.c \ ../../common/exec.c ../../common/fe_memutils.c ../../common/username.c \ ../../common/wait_error.c ../../port/thread.c |