diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-01-05 15:47:05 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-01-05 15:47:05 -0500 |
commit | 3343ea9e8ea4f552b3f6e5436938f2f0e153b947 (patch) | |
tree | 36e40fa86b0344e1c35c357c928c65ce479c6ce2 /src | |
parent | 4aecd22d3c84c44dd230426bcccd286798ac6b65 (diff) | |
download | postgresql-3343ea9e8ea4f552b3f6e5436938f2f0e153b947.tar.gz postgresql-3343ea9e8ea4f552b3f6e5436938f2f0e153b947.zip |
Sort $(wildcard) output where needed for reproducible build output.
The order of inclusion of .o files makes a difference in linker output;
not a functional difference, but still a bitwise difference, which annoys
some packagers who would like reproducible builds.
Report and patch by Christoph Berg
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_xlogdump/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_xlogdump/Makefile b/src/bin/pg_xlogdump/Makefile index 315e869ffe0..11df47d5169 100644 --- a/src/bin/pg_xlogdump/Makefile +++ b/src/bin/pg_xlogdump/Makefile @@ -12,7 +12,7 @@ OBJS = pg_xlogdump.o compat.o xlogreader.o rmgrdesc.o \ override CPPFLAGS := -DFRONTEND $(CPPFLAGS) -RMGRDESCSOURCES = $(notdir $(wildcard $(top_srcdir)/src/backend/access/rmgrdesc/*desc.c)) +RMGRDESCSOURCES = $(sort $(notdir $(wildcard $(top_srcdir)/src/backend/access/rmgrdesc/*desc.c))) RMGRDESCOBJS = $(patsubst %.c,%.o,$(RMGRDESCSOURCES)) |