summaryrefslogtreecommitdiff
path: root/src/backend/tsearch
diff options
context:
space:
mode:
authorMichael Paquier2019-12-18 01:42:40 +0000
committerMichael Paquier2019-12-18 01:42:40 +0000
commitaa3ef7ff505305d8ee5f733090b076c301a32cc8 (patch)
tree0c6b1d3cad40cc38cb4b08e616075199eeb00b60 /src/backend/tsearch
parent181932a03212751102fb2c105fe556a26aee6ed7 (diff)
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
Diffstat (limited to 'src/backend/tsearch')
-rw-r--r--src/backend/tsearch/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/backend/tsearch/Makefile b/src/backend/tsearch/Makefile
index 24fbcf7f18b..78b4d4605a6 100644
--- a/src/backend/tsearch/Makefile
+++ b/src/backend/tsearch/Makefile
@@ -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