Skip to content
Snippets Groups Projects
Commit 0bfeb5ae authored by Simon McVittie's avatar Simon McVittie
Browse files

pv-unruntime: Split LD_PRELOAD on either colons or spaces


According to ld.so(8), either is equally valid for LD_PRELOAD (although
note that LD_AUDIT only accepts colons).

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent a50fb11d
No related branches found
No related tags found
1 merge request!352pv-unruntime: Split LD_PRELOAD on either colons or spaces
......@@ -113,6 +113,7 @@ IFS=":"
for word in $ld_audit; do
options+=("--ld-audit=$word")
done
IFS=": "
for word in $ld_preload; do
options+=("--ld-preload=$word")
done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment