From 75e2224ae27f0c6078bddcd194a77f4ee0c8594a Mon Sep 17 00:00:00 2001 From: Collin Funk Date: Mon, 13 Jan 2025 19:43:12 -0800 Subject: [PATCH] tests: env-S.pl: unset GNU/Hurd env vars * tests/misc/env-S.pl: Unset LD_ORIGIN_PATH. --- tests/env/env-S.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/env/env-S.pl b/tests/env/env-S.pl index b250149656..48268b41c5 100755 --- a/tests/env/env-S.pl +++ b/tests/env/env-S.pl @@ -39,6 +39,9 @@ my $cf = 'SYSTEMROOT'; exists $ENV{$cf} and $env .= " -u$cf"; my $cf = 'WINDIR'; exists $ENV{$cf} and $env .= " -u$cf"; +# Likewise for these GNU/Hurd env vars +my $cf = 'LD_ORIGIN_PATH'; +exists $ENV{$cf} and $env .= " -u$cf"; my @Tests = ( -- 2.47.3