diff options
| author | Tom Lane | 2022-07-13 18:29:10 +0000 |
|---|---|---|
| committer | Tom Lane | 2022-07-13 18:29:10 +0000 |
| commit | 54ba2f06236a7588433a5825134759ed798eccbf (patch) | |
| tree | c805410c6f5560b666b6cb46ef51333a90fb62ca /src/bin/scripts | |
| parent | 27d2693187d1bcf2563ee7142ba37d4788c8d52b (diff) | |
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/scripts')
| -rw-r--r-- | src/bin/scripts/nls.mk | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/bin/scripts/nls.mk b/src/bin/scripts/nls.mk index 52a05eb9006..f4638a06f0d 100644 --- a/src/bin/scripts/nls.mk +++ b/src/bin/scripts/nls.mk @@ -1,6 +1,11 @@ # src/bin/scripts/nls.mk CATALOG_NAME = pgscripts -GETTEXT_FILES = $(FRONTEND_COMMON_GETTEXT_FILES) $(wildcard *.c) \ +GETTEXT_FILES = $(FRONTEND_COMMON_GETTEXT_FILES) \ + createdb.c createuser.c \ + dropdb.c dropuser.c \ + clusterdb.c vacuumdb.c reindexdb.c \ + pg_isready.c \ + common.c \ ../../fe_utils/parallel_slot.c \ ../../fe_utils/cancel.c ../../fe_utils/print.c \ ../../fe_utils/connect_utils.c \ |
