From 7e7b1021a7237dc9417ceab60dbaaafba9e25a48 Mon Sep 17 00:00:00 2001 From: Jaswanthi Kolla Date: Sun, 19 May 2024 00:17:56 -0400 Subject: [PATCH] correct comment --- builders/ubuntu-python-builder.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builders/ubuntu-python-builder.psm1 b/builders/ubuntu-python-builder.psm1 index 3e0ce37e9..5f3e6fab4 100644 --- a/builders/ubuntu-python-builder.psm1 +++ b/builders/ubuntu-python-builder.psm1 @@ -30,7 +30,7 @@ class UbuntuPythonBuilder : NixPythonBuilder { $pythonBinariesLocation = $this.GetFullPythonToolcacheLocation() - ### To build Python with SO we must pass full path to lib folder to the linker + ### To build Python with SO, passing relative path W.r.t to the binary location. $env:LDFLAGS="-Wl,-rpath='\$\$ORIGIN/../lib'" $configureString = "./configure" $configureString += " --prefix=$pythonBinariesLocation"