mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00
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>
This commit is contained in:
parent
eefc974c1c
commit
40ff3dcfd8
|
@ -53,20 +53,20 @@ PTEST_ENABLED = "0"
|
||||||
export CONFIG_SITE = "${COREBASE}/meta/site/native"
|
export CONFIG_SITE = "${COREBASE}/meta/site/native"
|
||||||
|
|
||||||
# set the compiler as well. It could have been set to something else
|
# set the compiler as well. It could have been set to something else
|
||||||
export CC = "${BUILD_CC}"
|
CC = "${BUILD_CC}"
|
||||||
export CXX = "${BUILD_CXX}"
|
CXX = "${BUILD_CXX}"
|
||||||
export FC = "${BUILD_FC}"
|
FC = "${BUILD_FC}"
|
||||||
export CPP = "${BUILD_CPP}"
|
CPP = "${BUILD_CPP}"
|
||||||
export LD = "${BUILD_LD}"
|
LD = "${BUILD_LD}"
|
||||||
export CCLD = "${BUILD_CCLD}"
|
CCLD = "${BUILD_CCLD}"
|
||||||
export AR = "${BUILD_AR}"
|
AR = "${BUILD_AR}"
|
||||||
export AS = "${BUILD_AS}"
|
AS = "${BUILD_AS}"
|
||||||
export RANLIB = "${BUILD_RANLIB}"
|
RANLIB = "${BUILD_RANLIB}"
|
||||||
export STRIP = "${BUILD_STRIP}"
|
STRIP = "${BUILD_STRIP}"
|
||||||
export NM = "${BUILD_NM}"
|
NM = "${BUILD_NM}"
|
||||||
export OBJCOPY = "${BUILD_OBJCOPY}"
|
OBJCOPY = "${BUILD_OBJCOPY}"
|
||||||
export OBJDUMP = "${BUILD_OBJDUMP}"
|
OBJDUMP = "${BUILD_OBJDUMP}"
|
||||||
export READELF = "${BUILD_READELF}"
|
READELF = "${BUILD_READELF}"
|
||||||
|
|
||||||
# Path prefixes
|
# Path prefixes
|
||||||
base_prefix = "${STAGING_DIR_NATIVE}"
|
base_prefix = "${STAGING_DIR_NATIVE}"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user