diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2021-06-08 23:39:47 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2021-06-09 00:28:54 +0200 |
commit | 4d6ea33aa43627b25eb2f1a0dcc7391d651bc32e (patch) | |
tree | c20bd1d02431738587afb698e5be99b1f18c5e60 /scripts | |
parent | 55ecf068b36c065363f3e6db37d314ae78d9f54d (diff) |
Trying to fix BUILD_NDPI for xcompilation.
* added a CMake warning as well
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/get-and-build-libndpi.sh | 7 |
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}" |