From c30120ee4655169eb7ff208fc5518a3f54621fc4 Mon Sep 17 00:00:00 2001 From: FellippeHeitor Date: Sun, 13 Feb 2022 09:53:30 -0300 Subject: [PATCH] Fix building static libraries in Linux With QB64 stored in a path with spaces in it, building static libraries on demand would fail silently. --- source/qb64.bas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/qb64.bas b/source/qb64.bas index 5c80cc406..cffe44eb7 100644 --- a/source/qb64.bas +++ b/source/qb64.bas @@ -24435,9 +24435,9 @@ SUB Build (path$) c$ = GDB_Fix$(c$) IF use THEN IF os$ = "WIN" THEN - SHELL _HIDE "cmd /C " + c$ + " 2>> " + return_path$ + "\" + compilelog$ + SHELL _HIDE "cmd /C " + c$ + " 2>> " + QuotedFilename$(return_path$ + "\" + compilelog$) ELSE - SHELL _HIDE c$ + " 2>> " + previous_dir$ + "/" + compilelog$ + SHELL _HIDE c$ + " 2>> " + QuotedFilename$(previous_dir$ + "/" + compilelog$) END IF END IF LOOP