Prevent stripping during compilation/installation.
This commit is contained in:
parent
b7d298c713
commit
4abf773ee3
1 changed files with 2 additions and 1 deletions
|
@ -21,9 +21,10 @@ WORK="${WORKBASE}/${MYPNV}"
|
||||||
|
|
||||||
DEFAULT_SRC_COMPILE_PARAMS=(
|
DEFAULT_SRC_COMPILE_PARAMS=(
|
||||||
CC="${CC}" AR="${AR}" LD="${LD}" NM="${NM}" HOSTCC="${BUILD_CC}"
|
CC="${CC}" AR="${AR}" LD="${LD}" NM="${NM}" HOSTCC="${BUILD_CC}"
|
||||||
|
STRIPTOOL='true'
|
||||||
)
|
)
|
||||||
|
|
||||||
DEFAULT_SRC_INSTALL_PARAMS=( PREFIX="${IMAGE}/usr" )
|
DEFAULT_SRC_INSTALL_PARAMS=( PREFIX="${IMAGE}/usr" STRIPTOOL='true' )
|
||||||
|
|
||||||
src_compile() {
|
src_compile() {
|
||||||
emake defconfig
|
emake defconfig
|
||||||
|
|
Loading…
Reference in a new issue