svn commit: r334860 - releng/11.2/release/amd64
Glen Barber
gjb at FreeBSD.org
Fri Jun 8 21:46:13 UTC 2018
Author: gjb
Date: Fri Jun 8 21:46:11 2018
New Revision: 334860
URL: https://svnweb.freebsd.org/changeset/base/334860
Log:
Fix the ordering of where '$bootable' is set in the second
variable setting, which was moved around as part of prior
commits that were subsequently reverted.
This is a direct commit to releng/11.2.
Approved by: re (kib)
Sponsored by: The FreeBSD Foundation
Modified:
releng/11.2/release/amd64/mkisoimages.sh
Modified: releng/11.2/release/amd64/mkisoimages.sh
==============================================================================
--- releng/11.2/release/amd64/mkisoimages.sh Fri Jun 8 21:44:15 2018 (r334859)
+++ releng/11.2/release/amd64/mkisoimages.sh Fri Jun 8 21:46:11 2018 (r334860)
@@ -38,7 +38,7 @@ if [ "x$1" = "x-b" ]; then
umount efi
rmdir efi
mdconfig -d -u $device
- bootable="-o bootimage=i386;efiboot.img -o no-emul-boot -o platformid=efi $bootable"
+ bootable="$bootable -o bootimage=i386;efiboot.img -o no-emul-boot -o platformid=efi"
shift
else
More information about the svn-src-all
mailing list