From 8f904fa664b953e2f81759dd7597067c8a0a7242 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 12 Dec 2016 10:08:41 +0100 Subject: make sure we won't again lost the special char The ascii 15 () special character in syslinux color codes is regularly lost b/c of some commands (eg: diff/patch), which broke color codes in syslinux (mga#18316). Just use chr() so that it'll never happen again --- images/make_boot_img | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'images/make_boot_img') diff --git a/images/make_boot_img b/images/make_boot_img index 91ce33d57..82cd9c27b 100755 --- a/images/make_boot_img +++ b/images/make_boot_img @@ -68,7 +68,7 @@ foreach my $img (@images) { # The ascii 15 / Shift In / ^O character before the 0 should not be removed sub syslinux_color { - "0" . { + chr(15) . "0" . { default => '7', blue => '9', green => 'a', -- cgit v1.2.1