cross-build.sh: fix build with capstone
authorTarek BOCHKATI <tarek.bouchkati@gmail.com>
Fri, 6 May 2022 11:45:33 +0000 (12:45 +0100)
committerAntonio Borneo <borneo.antonio@gmail.com>
Sat, 7 May 2022 17:35:37 +0000 (17:35 +0000)
since commit 12d1ad0c7529 : update capstone include path ...
the generated capstone.pc is not working

so fix the includedir in capstone.pc to get github action working

Change-Id: I7767e181a74c73a7514eeb6293cd556a794dbfe9
Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Reviewed-on: https://review.openocd.org/c/openocd/+/6969
Tested-by: jenkins
Reviewed-by: Tim Newsome <tim@sifive.com>
Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
contrib/cross-build.sh

index 8b31a3f00987180e64bd600e05b24496f27e015a..7c572f55d75c2fbd3b9f245f5e1a40e6ecdd1059 100755 (executable)
@@ -148,7 +148,7 @@ if [ -d $CAPSTONE_SRC ] ; then
   sed -i '1s;^;prefix=/usr \
 exec_prefix=${prefix} \
 libdir=${exec_prefix}/lib \
-includedir=${prefix}/include\n\n;' $CAPSTONE_PC_FILE
+includedir=${prefix}/include/capstone\n\n;' $CAPSTONE_PC_FILE
 fi