From 2596e47acc520c46dcc1ccdd1597bbf55fe809af Mon Sep 17 00:00:00 2001 From: Michel Pollet Date: Sat, 28 Oct 2023 06:10:55 +0100 Subject: [PATCH] make: Fix quotes around libmish pathname. #4 This is the only absolute path I can find... so it should be the only one breaking build in directories with spaces? Signed-off-by: Michel Pollet --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 29eb680..8de41cb 100644 --- a/Makefile +++ b/Makefile @@ -40,7 +40,7 @@ $(BIN)/mii_emu : $(LIB)/libmish.a libmish : $(LIB)/libmish.a LDLIBS += $(LIB)/libmish.a $(LIB)/libmish.a : | $(LIB) $(OBJ) $(BIN) - make -j -C libmish O=$(PWD) + make -j -C libmish O="$(PWD)" CC="$(CC)" V="$(V)" # Smartport firmware needs the assembler first test/asm/%.bin : test/asm/%.asm | $(BIN)/mii_asm