From 746b7c2641d2105435da6f4e1da06c719e74a718 Mon Sep 17 00:00:00 2001 From: Antoniu Pop Date: Mon, 24 Oct 2022 20:21:31 +0100 Subject: [PATCH] fix(dataflow build): fix HPX installation path when built and installed locally. --- compiler/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/Makefile b/compiler/Makefile index 0bd7cc764..08b9234fb 100644 --- a/compiler/Makefile +++ b/compiler/Makefile @@ -19,7 +19,7 @@ HPX_VERSION?=1.7.1 HPX_URL=https://github.com/STEllAR-GROUP/hpx/archive/refs/tags/$(HPX_VERSION).tar.gz HPX_TARBALL=$(shell pwd)/hpx-$(HPX_VERSION).tar.gz HPX_LOCAL_DIR=$(shell pwd)/hpx-$(HPX_VERSION) -HPX_INSTALL_DIR?=$(HPX_LOCAL_DIR) +HPX_INSTALL_DIR?=$(HPX_LOCAL_DIR)/build CONCRETE_CORE_FFI_VERSION?=0.2.0-rc.5 ifeq ($(shell uname), Linux)