trees: fix listfile check in copy_elf()
don't check that the variable is empty check that the file itself exists or not this should fix the recent build issues Signed-off-by: Leah Rowe <leah@libreboot.org>audit2-merge1
parent
9168d33741
commit
c88fb8c129
|
@ -288,7 +288,7 @@ mkpayload_grub()
|
||||||
|
|
||||||
copy_elf()
|
copy_elf()
|
||||||
{
|
{
|
||||||
[ -z "$listfile" ] && return 0
|
[ -f "$listfile" ] || return 0
|
||||||
|
|
||||||
while read -r f; do
|
while read -r f; do
|
||||||
[ -f "$cdir/$f" ] && x_ cp "$cdir/$f" "$dest_dir"
|
[ -f "$cdir/$f" ] && x_ cp "$cdir/$f" "$dest_dir"
|
||||||
|
|
Loading…
Reference in New Issue