From f50c895a926507183a16300dd460d3e71010cbe9 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Fri, 19 Jun 2015 10:33:08 +0200 Subject: [PATCH] Fix check for sylinux *.c32 files We of course want to check the availability of the files inside the generated system and not rely on the building host. --- grml-live | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grml-live b/grml-live index 8040739..ccef89f 100755 --- a/grml-live +++ b/grml-live @@ -903,7 +903,7 @@ if [ "$ARCH" = i386 ] || [ "$ARCH" = amd64 ] ; then # copy _required_ isolinux files if [ -d "${CHROOT_OUTPUT}/usr/lib/ISOLINUX" ] ; then copy_addon_file isolinux.bin /usr/lib/ISOLINUX isolinux - for file in /usr/lib/syslinux/modules/bios/*.c32 ; do + for file in ${CHROOT_OUTPUT}/usr/lib/syslinux/modules/bios/*.c32 ; do copy_addon_file "$(basename "$file")" /usr/lib/syslinux/modules/bios/ isolinux done else # syslinux versions <= 3:4.05+dfsg-6+deb8u1 -- 2.1.4