1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-22 21:53:06 +03:00

Fix some OBJS lists in two Makefiles to be ordered alphabetically

These have been missed in 01368e5, and count for plpython and the
backend's tsearch code.

Author: Mahendra Singh
Discussion: https://postgr.es/m/CAKYtNAo4mxRRyDB0YqE6QLh17XD7pPQotpGm3GnHS+gQKz4zQQ@mail.gmail.com
This commit is contained in:
Michael Paquier
2019-12-18 10:42:40 +09:00
parent 181932a032
commit aa3ef7ff50
2 changed files with 8 additions and 8 deletions

View File

@@ -24,21 +24,21 @@ DICTFILES=synonym_sample.syn thesaurus_sample.ths \
DICTFILES_PATH=$(addprefix dicts/,$(DICTFILES))
OBJS = \
ts_locale.o \
ts_parse.o \
wparser.o \
wparser_def.o \
dict.o \
dict_ispell.o \
dict_simple.o \
dict_synonym.o \
dict_thesaurus.o \
dict_ispell.o \
regis.o \
spell.o \
to_tsany.o \
ts_locale.o \
ts_parse.o \
ts_selfuncs.o \
ts_typanalyze.o \
ts_utils.o
ts_utils.o \
wparser.o \
wparser_def.o
include $(top_srcdir)/src/backend/common.mk