From 19681424105131ade664e09a55080ea421c7b458 Mon Sep 17 00:00:00 2001 From: tamood <59915222+tamood@users.noreply.github.com> Date: Fri, 17 Dec 2021 16:55:30 +0900 Subject: [PATCH] Export OPENLANE_TAG Fixes compatibility problem with Openlane's Makefile where IMAGE_NAME is not recognized. --- openlane/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlane/Makefile b/openlane/Makefile index d1ac633fa..40b784d93 100644 --- a/openlane/Makefile +++ b/openlane/Makefile @@ -73,7 +73,7 @@ ifeq ($(OPENLANE_ROOT),) endif git clone https://github.com/efabless/OpenLane --branch=$(OPENLANE_TAG) --depth=1 $(OPENLANE_ROOT) && \ cd $(OPENLANE_ROOT) && \ - export IMAGE_NAME=efabless/openlane:$(OPENLANE_TAG) && \ + export OPENLANE_TAG=$(OPENLANE_TAG) && \ make openlane FORCE: