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

Commit54ba2f0

Browse files
committed
Revert "Use wildcards instead of manually-maintained file lists in */nls.mk."
This reverts commit617d691.While I still think the basic idea is attractive, we need to sortout what happens with built .c files, and there also seem to beVPATH issues.
1 parent27d2693 commit54ba2f0

File tree

25 files changed

+59
-25
lines changed

25 files changed

+59
-25
lines changed

‎src/bin/initdb/nls.mk‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# src/bin/initdb/nls.mk
22
CATALOG_NAME = initdb
3-
GETTEXT_FILES =$(FRONTEND_COMMON_GETTEXT_FILES)$(wildcard*.c) ../../common/exec.c ../../common/fe_memutils.c ../../common/file_utils.c ../../common/pgfnames.c ../../common/restricted_token.c ../../common/rmtree.c ../../common/username.c ../../common/wait_error.c ../../port/dirmod.c
3+
GETTEXT_FILES =$(FRONTEND_COMMON_GETTEXT_FILES)findtimezone.c initdb.c ../../common/exec.c ../../common/fe_memutils.c ../../common/file_utils.c ../../common/pgfnames.c ../../common/restricted_token.c ../../common/rmtree.c ../../common/username.c ../../common/wait_error.c ../../port/dirmod.c
44
GETTEXT_TRIGGERS =$(FRONTEND_COMMON_GETTEXT_TRIGGERS) simple_prompt
55
GETTEXT_FLAGS =$(FRONTEND_COMMON_GETTEXT_FLAGS)

‎src/bin/pg_amcheck/nls.mk‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# src/bin/pg_amcheck/nls.mk
22
CATALOG_NAME = pg_amcheck
3-
GETTEXT_FILES =$(FRONTEND_COMMON_GETTEXT_FILES)$(wildcard*.c)\
3+
GETTEXT_FILES =$(FRONTEND_COMMON_GETTEXT_FILES)\
4+
pg_amcheck.c\
45
../../fe_utils/cancel.c\
56
../../fe_utils/connect_utils.c\
67
../../fe_utils/option_utils.c\

‎src/bin/pg_archivecleanup/nls.mk‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# src/bin/pg_archivecleanup/nls.mk
22
CATALOG_NAME = pg_archivecleanup
3-
GETTEXT_FILES =$(FRONTEND_COMMON_GETTEXT_FILES)$(wildcard*.c)
3+
GETTEXT_FILES =$(FRONTEND_COMMON_GETTEXT_FILES)pg_archivecleanup.c
44
GETTEXT_TRIGGERS =$(FRONTEND_COMMON_GETTEXT_TRIGGERS)
55
GETTEXT_FLAGS =$(FRONTEND_COMMON_GETTEXT_FLAGS)

‎src/bin/pg_basebackup/nls.mk‎

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
# src/bin/pg_basebackup/nls.mk
22
CATALOG_NAME = pg_basebackup
3-
GETTEXT_FILES =$(FRONTEND_COMMON_GETTEXT_FILES)$(wildcard*.c)\
3+
GETTEXT_FILES =$(FRONTEND_COMMON_GETTEXT_FILES)\
4+
bbstreamer_file.c\
5+
bbstreamer_gzip.c\
6+
bbstreamer_inject.c\
7+
bbstreamer_lz4.c\
8+
bbstreamer_tar.c\
9+
bbstreamer_zstd.c\
10+
pg_basebackup.c\
11+
pg_receivewal.c\
12+
pg_recvlogical.c\
13+
receivelog.c\
14+
streamutil.c\
15+
walmethods.c\
416
../../common/compression.c\
517
../../common/fe_memutils.c\
618
../../common/file_utils.c\

‎src/bin/pg_checksums/nls.mk‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# src/bin/pg_checksums/nls.mk
22
CATALOG_NAME = pg_checksums
3-
GETTEXT_FILES =$(FRONTEND_COMMON_GETTEXT_FILES)$(wildcard*.c)\
3+
GETTEXT_FILES =$(FRONTEND_COMMON_GETTEXT_FILES)\
4+
pg_checksums.c\
45
../../fe_utils/option_utils.c
56
GETTEXT_TRIGGERS =$(FRONTEND_COMMON_GETTEXT_TRIGGERS)
67
GETTEXT_FLAGS =$(FRONTEND_COMMON_GETTEXT_FLAGS)

‎src/bin/pg_config/nls.mk‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# src/bin/pg_config/nls.mk
22
CATALOG_NAME = pg_config
3-
GETTEXT_FILES =$(wildcard*.c) ../../common/config_info.c ../../common/exec.c
3+
GETTEXT_FILES =pg_config.c ../../common/config_info.c ../../common/exec.c

‎src/bin/pg_controldata/nls.mk‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# src/bin/pg_controldata/nls.mk
22
CATALOG_NAME = pg_controldata
3-
GETTEXT_FILES =$(wildcard*.c) ../../common/controldata_utils.c
3+
GETTEXT_FILES =pg_controldata.c ../../common/controldata_utils.c
44
GETTEXT_TRIGGERS =$(FRONTEND_COMMON_GETTEXT_TRIGGERS)
55
GETTEXT_FLAGS =$(FRONTEND_COMMON_GETTEXT_FLAGS)

‎src/bin/pg_ctl/nls.mk‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# src/bin/pg_ctl/nls.mk
22
CATALOG_NAME = pg_ctl
3-
GETTEXT_FILES =$(wildcard*.c) ../../common/exec.c ../../common/fe_memutils.c ../../common/wait_error.c ../../port/path.c
3+
GETTEXT_FILES =pg_ctl.c ../../common/exec.c ../../common/fe_memutils.c ../../common/wait_error.c ../../port/path.c

‎src/bin/pg_dump/nls.mk‎

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# src/bin/pg_dump/nls.mk
22
CATALOG_NAME = pg_dump
3-
GETTEXT_FILES =$(FRONTEND_COMMON_GETTEXT_FILES)$(wildcard*.c)\
3+
GETTEXT_FILES =$(FRONTEND_COMMON_GETTEXT_FILES)\
4+
pg_backup_archiver.c pg_backup_db.c pg_backup_custom.c\
5+
pg_backup_null.c pg_backup_tar.c\
6+
pg_backup_directory.c dumputils.c compress_io.c\
7+
pg_dump.c common.c pg_dump_sort.c\
8+
pg_restore.c pg_dumpall.c\
9+
parallel.c parallel.h pg_backup_utils.c pg_backup_utils.h\
410
../../common/exec.c ../../common/fe_memutils.c\
511
../../common/wait_error.c\
612
../../fe_utils/option_utils.c

‎src/bin/pg_resetwal/nls.mk‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# src/bin/pg_resetwal/nls.mk
22
CATALOG_NAME = pg_resetwal
3-
GETTEXT_FILES =$(FRONTEND_COMMON_GETTEXT_FILES)$(wildcard*.c) ../../common/restricted_token.c
3+
GETTEXT_FILES =$(FRONTEND_COMMON_GETTEXT_FILES)pg_resetwal.c ../../common/restricted_token.c
44
GETTEXT_TRIGGERS =$(FRONTEND_COMMON_GETTEXT_TRIGGERS)
55
GETTEXT_FLAGS =$(FRONTEND_COMMON_GETTEXT_FLAGS)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp