aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/get-and-build-libndpi.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/get-and-build-libndpi.sh b/scripts/get-and-build-libndpi.sh
index 945dcf7b3..573b68d2c 100755
--- a/scripts/get-and-build-libndpi.sh
+++ b/scripts/get-and-build-libndpi.sh
@@ -20,7 +20,12 @@ fi
cd ./libnDPI
DEST_INSTALL="${DEST_INSTALL:-$(realpath ./install)}"
MAKE_PROGRAM="${MAKE_PROGRAM:-make -j4}"
-./autogen.sh --prefix="${DEST_INSTALL}" --with-only-libndpi
+if [ ! -z "${CROSS_COMPILE_TRIPLET}" ]; then
+ HOST_ARG="--host=${CROSS_COMPILE_TRIPLET}"
+else
+ HOST_ARG=""
+fi
+./autogen.sh --prefix="${DEST_INSTALL}" --with-only-libndpi ${HOST_ARG}
${MAKE_PROGRAM} install
rm -f "${LOCKFILE}"