From 5d3aa43f4b5421648d657cd316b6c237cc435ea1 Mon Sep 17 00:00:00 2001 From: David Hewitt Date: Mon, 15 Jan 2024 10:55:33 +0000 Subject: [PATCH] correct build-profiling make command (#1160) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ba8adca62..8fbe91389 100644 --- a/Makefile +++ b/Makefile @@ -48,7 +48,7 @@ endif build-profiling: @rm -f python/pydantic_core/*.so ifneq ($(USE_MATURIN),) - maturin develop '--profile profiling' + maturin develop --profile profiling else pip install -v -e . --config-settings=build-args='--profile profiling' endif