mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-03-07 19:47:50 +08:00
Fix quoting in the add_to_path Makefile macro.
The previous quoting caused "make -C src/bin check" to ignore, rather than add to, any LD_LIBRARY_PATH content from the environment. Back-patch to 9.4, where the macro was introduced.
This commit is contained in:
parent
27a23f9dfe
commit
494affbd90
@ -302,7 +302,7 @@ PROVE_FLAGS = --verbose
|
||||
|
||||
# prepend to path if already set, else just set it
|
||||
define add_to_path
|
||||
$(1)='$(if $($(1)),$(2):$$$(1),$(2))'
|
||||
$(1)="$(if $($(1)),$(2):$$$(1),$(2))"
|
||||
endef
|
||||
|
||||
# platform-specific environment variable to set shared library path
|
||||
|
Loading…
Reference in New Issue
Block a user