From 187648093957f0a13b1aee53bfd4c9a0decce320 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Wed, 11 Sep 2013 09:54:29 +0200 Subject: [PATCH] Fix check for presence of pxelinux.0 file This worked only on for build systems where /usr/lib/syslinux/pxelinux.0 was present on the build system itself. :) --- grml-live | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grml-live b/grml-live index a6dcafb..0d1c4cd 100755 --- a/grml-live +++ b/grml-live @@ -1435,7 +1435,7 @@ create_netbootpackage() { mkdir -p "$NETBOOT" - if ! [ -r "${CHROOT}/usr/lib/syslinux/pxelinux.0" ] ; then + if ! [ -r "${CHROOT_OUTPUT}/usr/lib/syslinux/pxelinux.0" ] ; then ewarn "File /usr/lib/syslinux/pxelinux.0 not found in build chroot." ; eend 0 eindent einfo "Install syslinux[-common] package in chroot to get a netboot package." -- 2.1.4