File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 3232ifeq ($(PORTNAME ) , win32)
3333# these settings are the same as for plperl
3434override CPPFLAGS += -DPLPERL_HAVE_UID_GID -Wno-comment
35- SHLIB_LINK += ../hstore/libhstore.a $(wildcard ../../src/pl/plperl/libperl* .a)
35+ SHLIB_LINK += ../hstore/libhstore.a $(sort $( wildcard ../../src/pl/plperl/libperl* .a) )
3636endif
3737
3838ifeq ($(PORTNAME ) , cygwin)
Original file line number Diff line number Diff line change @@ -27,10 +27,10 @@ endif
2727# dependency. This does preclude pgxs builds.
2828ifeq ($(PORTNAME ) , aix)
2929rpathdir = $(pkglibdir ) :$(python_libdir )
30- SHLIB_LINK += ../hstore/libhstore.exp $(python_libspec ) $(python_additional_libs ) $(wildcard ../../src/pl/plpython/libplpython* .exp)
30+ SHLIB_LINK += ../hstore/libhstore.exp $(python_libspec ) $(python_additional_libs ) $(sort $( wildcard ../../src/pl/plpython/libplpython* .exp) )
3131endif
3232ifeq ($(PORTNAME ) , win32)
33- SHLIB_LINK += ../hstore/libhstore.a $(wildcard ../../src/pl/plpython/libpython* .a) $(wildcard ../../src/pl/plpython/libplpython* .a)
33+ SHLIB_LINK += ../hstore/libhstore.a $(sort $( wildcard ../../src/pl/plpython/libpython* .a)) $(sort $( wildcard ../../src/pl/plpython/libplpython* .a) )
3434endif
3535
3636ifeq ($(PORTNAME ) , cygwin)
Original file line number Diff line number Diff line change @@ -27,10 +27,10 @@ endif
2727# dependency. This does preclude pgxs builds.
2828ifeq ($(PORTNAME ) , aix)
2929rpathdir = $(pkglibdir ) :$(python_libdir )
30- SHLIB_LINK += $(python_libspec ) $(python_additional_libs ) $(wildcard ../../src/pl/plpython/libplpython* .exp)
30+ SHLIB_LINK += $(python_libspec ) $(python_additional_libs ) $(sort $( wildcard ../../src/pl/plpython/libplpython* .exp) )
3131endif
3232ifeq ($(PORTNAME ) , win32)
33- SHLIB_LINK += $(wildcard ../../src/pl/plpython/libpython* .a) $(wildcard ../../src/pl/plpython/libplpython* .a)
33+ SHLIB_LINK += $(sort $( wildcard ../../src/pl/plpython/libpython* .a)) $(sort $( wildcard ../../src/pl/plpython/libplpython* .a) )
3434endif
3535
3636ifeq ($(PORTNAME ) , cygwin)
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ OBJS = pg_xlogdump.o compat.o xlogreader.o rmgrdesc.o \
1212
1313override CPPFLAGS := -DFRONTEND $(CPPFLAGS )
1414
15- RMGRDESCSOURCES = $(notdir $(wildcard $(top_srcdir ) /src/backend/access/rmgrdesc/* desc.c) )
15+ RMGRDESCSOURCES = $(sort $( notdir $(wildcard $(top_srcdir ) /src/backend/access/rmgrdesc/* desc.c) ) )
1616RMGRDESCOBJS = $(patsubst % .c,% .o,$(RMGRDESCSOURCES ) )
1717
1818
You can’t perform that action at this time.
0 commit comments