Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit494affb

Browse files
committed
Fix quoting in the add_to_path Makefile macro.
The previous quoting caused "make -C src/bin check" to ignore, ratherthan add to, any LD_LIBRARY_PATH content from the environment.Back-patch to 9.4, where the macro was introduced.
1 parent27a23f9 commit494affb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/Makefile.global.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ PROVE_FLAGS = --verbose
302302

303303
# prepend to path if already set, else just set it
304304
defineadd_to_path
305-
$(1)='$(if$($(1)),$(2):$$$(1),$(2))'
305+
$(1)="$(if$($(1)),$(2):$$$(1),$(2))"
306306
endef
307307

308308
# platform-specific environment variable to set shared library path

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp