summaryrefslogtreecommitdiffstats
path: root/meta/classes-recipe
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-03-17 15:39:05 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-03-18 10:27:31 +0000
commit40ff3dcfd838f080431b6f23deb76f114c280717 (patch)
treed6095b22b6a9cd0c37fff4b680711a49f7997a68 /meta/classes-recipe
parenteefc974c1c6c9527a9ab5a37b540f2f5710fd814 (diff)
downloadpoky-40ff3dcfd838f080431b6f23deb76f114c280717.tar.gz
native: Drop export statements that aren't needed
These are already exported by bitbake.conf, no need to export them again. (From OE-Core rev: 92e52f5afac4877366c1ee2e6c6f0d1f5df84410) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-recipe')
-rw-r--r--meta/classes-recipe/native.bbclass28
1 files changed, 14 insertions, 14 deletions
diff --git a/meta/classes-recipe/native.bbclass b/meta/classes-recipe/native.bbclass
index febb4b6001..625975a694 100644
--- a/meta/classes-recipe/native.bbclass
+++ b/meta/classes-recipe/native.bbclass
@@ -53,20 +53,20 @@ PTEST_ENABLED = "0"
53export CONFIG_SITE = "${COREBASE}/meta/site/native" 53export CONFIG_SITE = "${COREBASE}/meta/site/native"
54 54
55# set the compiler as well. It could have been set to something else 55# set the compiler as well. It could have been set to something else
56export CC = "${BUILD_CC}" 56CC = "${BUILD_CC}"
57export CXX = "${BUILD_CXX}" 57CXX = "${BUILD_CXX}"
58export FC = "${BUILD_FC}" 58FC = "${BUILD_FC}"
59export CPP = "${BUILD_CPP}" 59CPP = "${BUILD_CPP}"
60export LD = "${BUILD_LD}" 60LD = "${BUILD_LD}"
61export CCLD = "${BUILD_CCLD}" 61CCLD = "${BUILD_CCLD}"
62export AR = "${BUILD_AR}" 62AR = "${BUILD_AR}"
63export AS = "${BUILD_AS}" 63AS = "${BUILD_AS}"
64export RANLIB = "${BUILD_RANLIB}" 64RANLIB = "${BUILD_RANLIB}"
65export STRIP = "${BUILD_STRIP}" 65STRIP = "${BUILD_STRIP}"
66export NM = "${BUILD_NM}" 66NM = "${BUILD_NM}"
67export OBJCOPY = "${BUILD_OBJCOPY}" 67OBJCOPY = "${BUILD_OBJCOPY}"
68export OBJDUMP = "${BUILD_OBJDUMP}" 68OBJDUMP = "${BUILD_OBJDUMP}"
69export READELF = "${BUILD_READELF}" 69READELF = "${BUILD_READELF}"
70 70
71# Path prefixes 71# Path prefixes
72base_prefix = "${STAGING_DIR_NATIVE}" 72base_prefix = "${STAGING_DIR_NATIVE}"