1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-06-29 07:00:39 +00:00

Fix building static libraries in Linux

With QB64 stored in a path with spaces in it,
building static libraries on demand would
fail silently.
This commit is contained in:
FellippeHeitor 2022-02-13 09:53:30 -03:00
parent 6ca934c2ee
commit c30120ee46

View file

@ -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