From 71a0fc2caa25e32865339fc2cfe92232a1b84778 Mon Sep 17 00:00:00 2001
From: nakst <>
Date: Fri, 28 Jan 2022 19:11:30 +0000
Subject: [PATCH] trim brew library path

---
 ports/gcc/port.script | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ports/gcc/port.script b/ports/gcc/port.script
index 3a722f4..513ad18 100644
--- a/ports/gcc/port.script
+++ b/ports/gcc/port.script
@@ -84,7 +84,7 @@ void Start() {
 		// Get the brew library path if we're running on Darwin.
 		str hostPlatform = StringTrim(SystemShellEvaluate("uname"));
 		str libraryPath = "";
-		if hostPlatform == "Darwin" libraryPath = "-L" + SystemShellEvaluate("brew --prefix") + "/lib";
+		if hostPlatform == "Darwin" libraryPath = "-L" + StringTrim(SystemShellEvaluate("brew --prefix")) + "/lib";
 
 		// Check all the needed tools are available.
 		assert SystemShellExecute("which g++");