diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2014-07-15 10:00:53 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2014-07-15 10:10:58 -0400 |
commit | 77b41010dbb159b77b35aef02b517ce1a130f3b6 (patch) | |
tree | 8c7a744e94f9295e1316fdc4bf1141d74edd90fe /src | |
parent | d3c980694fa4523a8aa66b57343f031c4b6b8425 (diff) | |
download | postgresql-77b41010dbb159b77b35aef02b517ce1a130f3b6.tar.gz postgresql-77b41010dbb159b77b35aef02b517ce1a130f3b6.zip |
Add missing source files to nls.mk
These are files under common/ that have been moved around. Updating
these manually is not satisfactory, but it's the only solution at the
moment.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/initdb/nls.mk | 2 | ||||
-rw-r--r-- | src/bin/pg_dump/nls.mk | 3 | ||||
-rw-r--r-- | src/bin/psql/nls.mk | 3 | ||||
-rw-r--r-- | src/bin/scripts/nls.mk | 2 |
4 files changed, 6 insertions, 4 deletions
diff --git a/src/bin/initdb/nls.mk b/src/bin/initdb/nls.mk index 377e75970b8..9fa01994253 100644 --- a/src/bin/initdb/nls.mk +++ b/src/bin/initdb/nls.mk @@ -1,5 +1,5 @@ # src/bin/initdb/nls.mk CATALOG_NAME = initdb AVAIL_LANGUAGES = cs de es fr it ja pl pt_BR ru zh_CN -GETTEXT_FILES = findtimezone.c initdb.c ../../common/exec.c ../../common/fe_memutils.c ../../common/pgfnames.c ../../common/rmtree.c ../../common/wait_error.c ../../port/dirmod.c +GETTEXT_FILES = findtimezone.c initdb.c ../../common/exec.c ../../common/fe_memutils.c ../../common/pgfnames.c ../../common/rmtree.c ../../common/username.c ../../common/wait_error.c ../../port/dirmod.c GETTEXT_TRIGGERS = simple_prompt diff --git a/src/bin/pg_dump/nls.mk b/src/bin/pg_dump/nls.mk index bf40e28eaf4..c53826df44d 100644 --- a/src/bin/pg_dump/nls.mk +++ b/src/bin/pg_dump/nls.mk @@ -7,7 +7,8 @@ GETTEXT_FILES = pg_backup_archiver.c pg_backup_db.c pg_backup_custom.c \ pg_dump.c common.c pg_dump_sort.c \ pg_restore.c pg_dumpall.c \ parallel.c parallel.h pg_backup_utils.c pg_backup_utils.h \ - ../../common/exec.c ../../common/fe_memutils.c + ../../common/exec.c ../../common/fe_memutils.c \ + ../../common/wait_error.c GETTEXT_TRIGGERS = write_msg:2 exit_horribly:2 simple_prompt \ ExecuteSqlCommand:3 ahlog:3 warn_or_exit_horribly:3 GETTEXT_FLAGS = \ diff --git a/src/bin/psql/nls.mk b/src/bin/psql/nls.mk index e2505f17740..a535eb6fd66 100644 --- a/src/bin/psql/nls.mk +++ b/src/bin/psql/nls.mk @@ -4,6 +4,7 @@ AVAIL_LANGUAGES = cs de es fr it ja pl pt_BR ru zh_CN zh_TW GETTEXT_FILES = command.c common.c copy.c help.c input.c large_obj.c \ mainloop.c print.c psqlscan.c startup.c describe.c sql_help.h sql_help.c \ tab-complete.c variables.c \ - ../../common/exec.c ../../common/fe_memutils.c ../../common/wait_error.c + ../../common/exec.c ../../common/fe_memutils.c ../../common/username.c \ + ../../common/wait_error.c GETTEXT_TRIGGERS = N_ psql_error simple_prompt GETTEXT_FLAGS = psql_error:1:c-format diff --git a/src/bin/scripts/nls.mk b/src/bin/scripts/nls.mk index 3e3c4d9a58e..b83a8ae76a2 100644 --- a/src/bin/scripts/nls.mk +++ b/src/bin/scripts/nls.mk @@ -6,5 +6,5 @@ GETTEXT_FILES = createdb.c createlang.c createuser.c \ clusterdb.c vacuumdb.c reindexdb.c \ pg_isready.c \ common.c \ - ../../common/fe_memutils.c + ../../common/fe_memutils.c ../../common/username.c GETTEXT_TRIGGERS = simple_prompt yesno_prompt |