From 209e85f5e492f15054efbc9ea53ca191dce27ee0 Mon Sep 17 00:00:00 2001 From: Dany LE Date: Sat, 22 Jul 2023 23:23:19 +0200 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index cd03873..838c4ea 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,7 +9,10 @@ def build_plugin() aclocal autoconf automake --add-missing - search_path=$(realpath antd/build/$arch/usr) + path="antd/build/$arch/usr" + search_path=$(realpath "$path") + echo "PATH: $path" + echo "REAL PATH: $search_path" CFLAGS="-I$search_path/include" LDFLAGS="-L$search_path/lib" ./configure --prefix=/opt/www CFLAGS="-I$search_path/include" LDFLAGS="-L$search_path/lib" make DESTDIR=$WORKSPACE/build/$arch make install