build: ABI hint is not needed on extract

This commit is contained in:
Franco Fichtner 2021-04-15 08:59:41 +02:00
parent 5c992bebf5
commit 4a8970cbf8
1 changed files with 2 additions and 0 deletions

View File

@ -592,6 +592,7 @@ setup_base()
echo ">>> Setting up base in ${1}"
tar -C ${1} -xpf ${SETSDIR}/base-*-${PRODUCT_ARCH}${PRODUCT_DEVICE+"-${PRODUCT_DEVICE}"}.txz
rm -f ${1}/.abi_hint
# /home is needed for LiveCD images, and since it
# belongs to the base system, we create it from here.
@ -609,6 +610,7 @@ setup_kernel()
echo ">>> Setting up kernel in ${1}"
tar -C ${1} -xpf ${SETSDIR}/kernel-*-${PRODUCT_ARCH}${PRODUCT_DEVICE+"-${PRODUCT_DEVICE}"}.txz
rm -f ${1}/.abi_hint
}
setup_distfiles()