From 361bce8d2c4c90a01eb3b7365a87dec0d93bb2b6 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sat, 21 Oct 2023 23:47:29 +0900 Subject: [PATCH] [Bug #19967] Ignore library before build --- tool/fake.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/fake.rb b/tool/fake.rb index 87c8fb7cfc..0366144531 100644 --- a/tool/fake.rb +++ b/tool/fake.rb @@ -13,7 +13,7 @@ end env or next e = ENV[env] or next e = e.split(File::PATH_SEPARATOR) - path = File.realpath(path, builddir) + path = File.realpath(path, builddir) rescue next e.delete(path) or next ENV[env] = (e.join(File::PATH_SEPARATOR) unless e.empty?) end