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:
Raphaël Hertzog 2013-03-01 08:50:34 +00:00
parent b77a268aa2
commit d79ac8335d
2 changed files with 7 additions and 1 deletions

2
debian/changelog vendored
View File

@ -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

View File

@ -198,7 +198,11 @@ fi
tar xf - -C $CDDIR/../syslinux ./usr/lib)
echo $SYSLINUXDEB >> $CDDIR/../$N.pkgs_extracted
find_pkg_file syslinux source >> $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"