From 29785b2af3b7f0f48043328d09810637bfdce5b2 Mon Sep 17 00:00:00 2001 From: Akos Kiss Date: Fri, 8 Jan 2021 16:00:44 +0100 Subject: [PATCH] Fix the include directory in the pkgconfig of the math lib (#4414) The pkgconfig specified `include/jerry-math` as the include directory, but cmake installs header to `include/jerryscript-math`. JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu --- jerry-math/libjerry-math.pc.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jerry-math/libjerry-math.pc.in b/jerry-math/libjerry-math.pc.in index 662f6a78c..2d59457a5 100644 --- a/jerry-math/libjerry-math.pc.in +++ b/jerry-math/libjerry-math.pc.in @@ -1,6 +1,6 @@ prefix=@CMAKE_INSTALL_PREFIX@ libdir=${prefix}/lib -includedir=${prefix}/include/jerry-math +includedir=${prefix}/include/jerryscript-math Name: libjerry-math Description: JerryScript: lightweight JavaScript engine (minimal math library)