Skip to content

Commit c7f3a00

Browse files
committed
Make DLSUFFIX easily discoverable by build scripts
This will enable things like the buildfarm client to discover more reliably if certain libraries have been installed. Discussion: https://postgr.es/m/859e7c91-7ef4-d4b4-2ca2-8046e0cbee09@2ndQuadrant.com This is a backpatch to 9.3 and 9.2 of commits b40cb99 and d9cdb1b now that we are supporting limited builds of older versions.
1 parent 985c8de commit c7f3a00

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/Makefile.global.in

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,11 @@ ifeq ($(enable_rpath), yes)
379379
LDFLAGS += $(rpath)
380380
endif
381381

382+
# Show the DLSUFFIX to build scripts (e.g. buildfarm)
383+
.PHONY: show_dl_suffix
384+
show_dl_suffix:
385+
@echo $(DLSUFFIX)
386+
382387

383388
##########################################################################
384389
#

0 commit comments

Comments
 (0)