build_style/gnu-makefile: set STRIP to /bin/true aka ':'.
This way xbps-src will strip bins itself via hooks to generate the debuginfo files and -dbg pkgs.
This commit is contained in:
parent
04238aab0b
commit
1b2eb0889b
|
@ -6,7 +6,7 @@ do_build() {
|
|||
|
||||
${make_cmd} \
|
||||
CC="$CC" CXX="$CXX" LD="$LD" AR="$AR" RANLIB="$RANLIB" \
|
||||
CPP="$CPP" AS="$AS" OBJDUMP="$OBJDUMP" STRIP="$STRIP" \
|
||||
CPP="$CPP" AS="$AS" OBJDUMP="$OBJDUMP" STRIP=":" \
|
||||
${makejobs} ${make_build_args} ${make_build_target}
|
||||
}
|
||||
|
||||
|
@ -14,7 +14,7 @@ do_install() {
|
|||
: ${make_cmd:=make}
|
||||
: ${make_install_target:=install}
|
||||
|
||||
make_install_args+=" PREFIX=/usr DESTDIR=${DESTDIR}"
|
||||
make_install_args+=" STRIP=: PREFIX=/usr DESTDIR=${DESTDIR}"
|
||||
|
||||
${make_cmd} ${make_install_args} ${make_install_target}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue