Commit aa3ef7ff authored by Michael Paquier's avatar Michael Paquier

Fix some OBJS lists in two Makefiles to be ordered alphabetically

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

Author: Mahendra Singh
Discussion: https://postgr.es/m/CAKYtNAo4mxRRyDB0YqE6QLh17XD7pPQotpGm3GnHS+gQKz4zQQ@mail.gmail.com
parent 181932a0
......@@ -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
......
......@@ -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)
......
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