[build] Ensure that isolinux.bin is modifiable

The -boot-info-table option to mkisofs will cause it to overwrite a
portion of the local copy of isolinux.bin.  Ensure that this file is
writable.

Originally-implemented-by: Nikolai Lifanov <lifanov@mail.lifanov.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
pull/242/head
Michael Brown 2021-01-29 23:55:36 +00:00
parent 9557497e78
commit 25b675c3db
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ copy_syslinux_file() {
/usr/lib/ISOLINUX \ /usr/lib/ISOLINUX \
; do ; do
if [ -e "${SRCDIR}/${FILENAME}" ] ; then if [ -e "${SRCDIR}/${FILENAME}" ] ; then
cp "${SRCDIR}/${FILENAME}" "${DESTDIR}/" install -m 644 "${SRCDIR}/${FILENAME}" "${DESTDIR}/"
return 0 return 0
fi fi
done done