mirror of
https://github.com/postgres/postgres.git
synced 2025-07-18 17:42:25 +03:00
Sort file list when creating gettext-files
That way, the created .pot file is more deterministic and not dependent on the order in which the files are found.
This commit is contained in:
@ -12,7 +12,7 @@ GETTEXT_FLAGS = $(BACKEND_COMMON_GETTEXT_FLAGS) \
|
||||
write_stderr:1:c-format
|
||||
|
||||
gettext-files: distprep
|
||||
find $(srcdir)/ $(srcdir)/../port/ -name '*.c' -print >$@
|
||||
find $(srcdir)/ $(srcdir)/../port/ -name '*.c' -print | LC_ALL=C sort >$@
|
||||
|
||||
my-clean:
|
||||
rm -f gettext-files
|
||||
|
Reference in New Issue
Block a user