Skip to content

Commit 12d6c72

Browse files
committed
Fix nls.mk to reflect astreamer files relocation
In the recent commit f80b09b, astreamer files were moved to another directory, but this change was not reflected in nls.mk. This commit corrects that oversight. Author: Kyotaro Horiguchi <horikyota.ntt@gmail.com> Discussion: https://postgr.es/m/20240806.102123.648178476296575604.horikyota.ntt@gmail.com
1 parent c899c68 commit 12d6c72

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/bin/pg_basebackup/nls.mk

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
# src/bin/pg_basebackup/nls.mk
22
CATALOG_NAME = pg_basebackup
33
GETTEXT_FILES = $(FRONTEND_COMMON_GETTEXT_FILES) \
4-
astreamer_file.c \
5-
astreamer_gzip.c \
64
astreamer_inject.c \
7-
astreamer_lz4.c \
8-
astreamer_tar.c \
9-
astreamer_zstd.c \
105
pg_basebackup.c \
116
pg_createsubscriber.c \
127
pg_receivewal.c \
@@ -19,6 +14,11 @@ GETTEXT_FILES = $(FRONTEND_COMMON_GETTEXT_FILES) \
1914
../../common/fe_memutils.c \
2015
../../common/file_utils.c \
2116
../../common/restricted_token.c \
17+
../../fe_utils/astreamer_file.c \
18+
../../fe_utils/astreamer_gzip.c \
19+
../../fe_utils/astreamer_lz4.c \
20+
../../fe_utils/astreamer_tar.c \
21+
../../fe_utils/astreamer_zstd.c \
2222
../../fe_utils/option_utils.c \
2323
../../fe_utils/recovery_gen.c \
2424
../../fe_utils/string_utils.c

0 commit comments

Comments
 (0)