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 <buserror@gmail.com>
This commit is contained in:
Michel Pollet 2023-10-28 06:10:55 +01:00
parent 38041eb6cc
commit 2596e47acc
1 changed files with 1 additions and 1 deletions

View File

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