From 312968cb442b6b75cac575966554994076565fb5 Mon Sep 17 00:00:00 2001 From: Anton Blanchard Date: Wed, 20 Apr 2022 20:15:24 +1000 Subject: [PATCH] Fix upstream breakage due to missing docker mount --- openlane/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openlane/Makefile b/openlane/Makefile index ca6b7eda..4177b659 100644 --- a/openlane/Makefile +++ b/openlane/Makefile @@ -44,6 +44,7 @@ endif @if [ -f ./$*/interactive.tcl ]; then\ docker run --rm -v $(OPENLANE_ROOT):/openlane \ -v $(PDK_ROOT):$(PDK_ROOT) \ + -v $(PWD)/..:$(PWD)/.. \ -v $(MCW_ROOT):$(MCW_ROOT) \ -v $(CARAVEL_ROOT):$(CARAVEL_ROOT) \ -e MCW_ROOT=$(MCW_ROOT) \ @@ -57,6 +58,7 @@ endif else\ docker run --rm -v $(OPENLANE_ROOT):/openlane \ -v $(PDK_ROOT):$(PDK_ROOT) \ + -v $(PWD)/..:$(PWD)/.. \ -v $(CARAVEL_ROOT):$(CARAVEL_ROOT) \ -v $(MCW_ROOT):$(MCW_ROOT) \ -e MCW_ROOT=$(MCW_ROOT) \