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:
parent
30d2c54194
commit
6ceaaa1e93
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue