From 875bc18023c611c90088a06d510af206a4b6a86a Mon Sep 17 00:00:00 2001 From: Akash Levy Date: Sun, 20 Oct 2024 16:47:48 -0700 Subject: [PATCH] Fix platform dependence for CentOS 7 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4b71e9a42..3770370d8 100644 --- a/Makefile +++ b/Makefile @@ -373,7 +373,7 @@ BOOST_PYTHON_LIB ?= $(shell \ ) # Inside CentOS 7 -ifeq (${IS_CENTOS7},1) +ifeq (${PLATFORM},centos7) BOOST_PYTHON_LIB = -L/opt/boost/lib -lboost_python38 CXXFLAGS += -I/opt/boost/include endif