From 1f58114db8cd90284367928cc79bb71d95db248d Mon Sep 17 00:00:00 2001 From: Iain Buclaw Date: Wed, 5 May 2021 00:28:44 +0200 Subject: [PATCH] libphobos: Fix visibility of std.process.searchPathFor This symbol is used by std.file.thisExePath on OpenBSD. Reviewed-on: https://github.com/dlang/phobos/pull/8041 libphobos/ChangeLog: * src/MERGE: Merge upstream phobos 32cfe9b61. --- libphobos/src/MERGE | 2 +- libphobos/src/std/process.d | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libphobos/src/MERGE b/libphobos/src/MERGE index 6f97404..49622c5 100644 --- a/libphobos/src/MERGE +++ b/libphobos/src/MERGE @@ -1,4 +1,4 @@ -e6907ff3e28d3c43469c46df4a0426726ecb8631 +32cfe9b61570d52d9885b0208fd20de0d351b51e The first line of this file holds the git revision number of the last merge done from the dlang/phobos repository. diff --git a/libphobos/src/std/process.d b/libphobos/src/std/process.d index 9cbeca8e..63ec493 100644 --- a/libphobos/src/std/process.d +++ b/libphobos/src/std/process.d @@ -887,7 +887,7 @@ version (Windows) @system unittest // Searches the PATH variable for the given executable file, // (checking that it is in fact executable). version (Posix) -private string searchPathFor(in char[] executable) +package(std) string searchPathFor(in char[] executable) @trusted //TODO: @safe nothrow { import std.algorithm.iteration : splitter; -- 2.7.4