From 58c7b5e8e72402647418533cbcfc40ec2c820443 Mon Sep 17 00:00:00 2001 From: Peter Shkenev Date: Sun, 12 May 2024 04:25:14 +0300 Subject: [PATCH] buildpkg: unset CONFIG_SITE while building packages This avoids build issues on certain distros which have this variable set Signed-off-by: Peter Shkenev --- scripts/setup_package_build_env.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/setup_package_build_env.sh b/scripts/setup_package_build_env.sh index 42ff18ae2..d29f8ccd7 100644 --- a/scripts/setup_package_build_env.sh +++ b/scripts/setup_package_build_env.sh @@ -39,3 +39,4 @@ fi export PKG_CONFIG=$SYSROOT/../buildpkg/onyx-pkg-config export PKG_CONFIG_FOR_BUILD=pkg-config +unset CONFIG_SITE