diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-03-17 15:39:05 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-03-18 10:27:31 +0000 |
commit | 40ff3dcfd838f080431b6f23deb76f114c280717 (patch) | |
tree | d6095b22b6a9cd0c37fff4b680711a49f7997a68 /meta/classes-recipe | |
parent | eefc974c1c6c9527a9ab5a37b540f2f5710fd814 (diff) | |
download | poky-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.bbclass | 28 |
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" | |||
53 | export CONFIG_SITE = "${COREBASE}/meta/site/native" | 53 | export 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 |
56 | export CC = "${BUILD_CC}" | 56 | CC = "${BUILD_CC}" |
57 | export CXX = "${BUILD_CXX}" | 57 | CXX = "${BUILD_CXX}" |
58 | export FC = "${BUILD_FC}" | 58 | FC = "${BUILD_FC}" |
59 | export CPP = "${BUILD_CPP}" | 59 | CPP = "${BUILD_CPP}" |
60 | export LD = "${BUILD_LD}" | 60 | LD = "${BUILD_LD}" |
61 | export CCLD = "${BUILD_CCLD}" | 61 | CCLD = "${BUILD_CCLD}" |
62 | export AR = "${BUILD_AR}" | 62 | AR = "${BUILD_AR}" |
63 | export AS = "${BUILD_AS}" | 63 | AS = "${BUILD_AS}" |
64 | export RANLIB = "${BUILD_RANLIB}" | 64 | RANLIB = "${BUILD_RANLIB}" |
65 | export STRIP = "${BUILD_STRIP}" | 65 | STRIP = "${BUILD_STRIP}" |
66 | export NM = "${BUILD_NM}" | 66 | NM = "${BUILD_NM}" |
67 | export OBJCOPY = "${BUILD_OBJCOPY}" | 67 | OBJCOPY = "${BUILD_OBJCOPY}" |
68 | export OBJDUMP = "${BUILD_OBJDUMP}" | 68 | OBJDUMP = "${BUILD_OBJDUMP}" |
69 | export READELF = "${BUILD_READELF}" | 69 | READELF = "${BUILD_READELF}" |
70 | 70 | ||
71 | # Path prefixes | 71 | # Path prefixes |
72 | base_prefix = "${STAGING_DIR_NATIVE}" | 72 | base_prefix = "${STAGING_DIR_NATIVE}" |