Silencing copying of syslinux themes since users get always distracted about syslinux 6 files not being dereferenced (which can be totally ignored if you're using syslinux 4).

This commit is contained in:
Daniel Baumann 2013-11-13 16:28:51 +01:00
parent 30d2c54194
commit 6ceaaa1e93
1 changed files with 2 additions and 2 deletions

View File

@ -149,7 +149,7 @@ case "${LB_BUILD_WITH_CHROOT}" in
# Copy in two steps since the theme can have absolute symlinks and would therefore not be dereferenced correctly
cp -a ${_SOURCE} chroot/root
Chroot chroot cp -aL /root/$(basename ${_SOURCE}) /root/$(basename ${_SOURCE}).tmp || true
Chroot chroot cp -aL /root/$(basename ${_SOURCE}) /root/$(basename ${_SOURCE}).tmp > /dev/null 2>&1 || true
cp -a chroot/root/$(basename ${_SOURCE}).tmp/* ${_TARGET}
rm -rf chroot/root/$(basename ${_SOURCE}) chroot/root/$(basename ${_SOURCE}).tmp
;;
@ -157,7 +157,7 @@ case "${LB_BUILD_WITH_CHROOT}" in
false)
mkdir -p ${_TARGET}
cp -aL ${_SOURCE}/* ${_TARGET} || true
cp -aL ${_SOURCE}/* ${_TARGET} > /dev/null 2>&1 || true
;;
esac