From 7e29a79a46d30dc236d097825ab849158929d977 Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Sun, 7 Aug 2022 11:34:42 -0700 Subject: [PATCH] aix: fix misreading of condition in 8f12a4e7add This lead to choosing the aix4.1 specific way of building the export file for the backend, rather than the modern one. Per buildfarm member hoverfly. Discussion: https://postgr.es/m/20220807182707.gi7pirwbz5etprfo@awork3.anarazel.de --- src/backend/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/Makefile b/src/backend/Makefile index 7262861b12..01d5a7448f 100644 --- a/src/backend/Makefile +++ b/src/backend/Makefile @@ -101,7 +101,7 @@ postgres: $(POSTGRES_IMP) $(POSTGRES_IMP): $(OBJS) $(LD) $(LDREL) $(LDOUT) SUBSYS.o $(call expand_subsys,$^) - $(MKLDEXPORT) SUBSYS.o $(bindir)/postgres > $@ + $(MKLDEXPORT) SUBSYS.o . > $@ @rm -f SUBSYS.o endif # aix