From c28abb29746fa933290eba57832fd53ced2b87ed Mon Sep 17 00:00:00 2001 From: heck Date: Tue, 5 May 2020 19:21:41 +0200 Subject: [PATCH] Bugfix: JNI-97 "r702 fails to build due to wrong include-path" --- Makefile.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.conf b/Makefile.conf index fa3f751..77601f1 100644 --- a/Makefile.conf +++ b/Makefile.conf @@ -21,7 +21,7 @@ LDFLAGS+=-shared $(ENGINE_LIB) $(AD_LIB) LDLIBS=-lstdc++ -lpEpEngine -lpEpAdapter -CXXFLAGS+=-fpermissive -fPIC -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/$(shell uname) $(AD_INC) $(ENGINE_INC) +CXXFLAGS+=-fpermissive -fPIC -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/$(shell uname | tr A-Z a-z) $(AD_INC) $(ENGINE_INC) ifneq (,$(findstring g++,$(CXX))) CXXFLAGS+=-fdiagnostics-color=always else ifneq (,$(findstring clang,$(CXX)))