From c88e282eefd3049cc8d13ef924ab4e7b0944878c Mon Sep 17 00:00:00 2001 From: Eren Dogan Date: Tue, 14 Feb 2023 12:33:00 -0800 Subject: [PATCH] Use local copy when building library with Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cdd527c1..0a77b518 100644 --- a/Makefile +++ b/Makefile @@ -224,5 +224,5 @@ build-library: # Build and install the openram library library: build-library - @python3 -m pip install --force --find-links=dist openram + @python3 -m pip install --force dist/openram*.whl .PHONY: library