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

View file

@ -20,6 +20,7 @@ PGFILEDESC = "PL/Python - procedural language"
NAME = plpython$(python_majorversion)
OBJS = \
$(WIN32RES) \
plpy_cursorobject.o \
plpy_elog.o \
plpy_exec.o \
@ -31,8 +32,7 @@ OBJS = \
plpy_spi.o \
plpy_subxactobject.o \
plpy_typeio.o \
plpy_util.o \
$(WIN32RES)
plpy_util.o
DATA = $(NAME)u.control $(NAME)u--1.0.sql $(NAME)u--unpackaged--1.0.sql
ifeq ($(python_majorversion),2)