Skip to content

Commit c177ba8

Browse files
committed
fix(makefile): correct indentation for ARGS assignment in build section
1 parent ff8350d commit c177ba8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,9 +205,9 @@ test: $(TARGET)
205205

206206
# Build submodules
207207
ifeq ($(PLATFORM),windows)
208-
ARGS = --parallel $(CPUS)
208+
ARGS = --parallel $(CPUS)
209209
else
210-
ARGS = -- -j$(CPUS)
210+
ARGS = -- -j$(CPUS)
211211
endif
212212
build/llama.cpp.stamp:
213213
cmake -B $(BUILD_LLAMA) $(LLAMA_OPTIONS) $(LLAMA_DIR)

0 commit comments

Comments
 (0)