Commit 9099d843 authored by Peter Eisentraut's avatar Peter Eisentraut

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.
parent 7db101c3
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment