Update tools/boot/wheezy/boot-x86 to not look for syslinux's source
package if we're not including sources.
This commit is contained in:
parent
b77a268aa2
commit
d79ac8335d
|
@ -29,6 +29,8 @@ debian-cd (3.1.12) UNRELEASED; urgency=low
|
|||
* Update Makefile to set MKISOFS to xorriso by default when building
|
||||
images for i386/amd64. Otherwise a build that doesn't set MKISOFS
|
||||
and MKISOFS_OPTS fails.
|
||||
* Update tools/boot/wheezy/boot-x86 to not look for syslinux's source
|
||||
package if we're not including sources.
|
||||
|
||||
-- Steve McIntyre <93sam@debian.org> Wed, 26 Sep 2012 01:09:13 +0100
|
||||
|
||||
|
|
|
@ -198,7 +198,11 @@ fi
|
|||
tar xf - -C $CDDIR/../syslinux ./usr/lib)
|
||||
|
||||
echo $SYSLINUXDEB >> $CDDIR/../$N.pkgs_extracted
|
||||
case $ARCHES in
|
||||
*source*)
|
||||
find_pkg_file syslinux source >> $CDDIR/../$N.pkgs_extracted
|
||||
;;
|
||||
esac
|
||||
|
||||
add_mkisofs_opt $CDDIR/../$N.mkisofs_opts "-isohybrid-mbr syslinux/usr/lib/syslinux/isohdpfx.bin"
|
||||
|
||||
|
|
Loading…
Reference in New Issue