Location via proxy:
[ UP ]
[Report a bug]
[Manage cookies]
No cookies
No scripts
No ads
No referrer
Show this form
projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f514dd
)
Make DLSUFFIX easily discoverable by build scripts
author
Andrew Dunstan
<andrew@dunslane.net>
Sun, 13 Jan 2019 20:59:35 +0000
(15:59 -0500)
committer
Andrew Dunstan
<andrew@dunslane.net>
Sun, 13 Jan 2019 21:04:34 +0000
(16:04 -0500)
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
Backpatch to all live branches.
src/Makefile.global.in
patch
|
blob
|
blame
|
history
diff --git
a/src/Makefile.global.in
b/src/Makefile.global.in
index 8d382944f94a67d9f26f15d876ad6619faf9cfae..a52c6252b867d859fa5fe725030c2b223989ce1b 100644
(file)
--- a/
src/Makefile.global.in
+++ b/
src/Makefile.global.in
@@
-527,6
+527,11
@@
ifeq ($(enable_rpath), yes)
LDFLAGS += $(rpath)
endif
+# Show the DLSUFFIX to build scripts (e.g. buildfarm)
+.PHONY: show_dl_suffix
+show_dl_suffix
+ @echo $(DLSUFFIX)
+
##########################################################################
#