diff options
author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2018-04-29 14:51:05 +0100 |
---|---|---|
committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2018-05-23 18:31:00 +0100 |
commit | 24899da1b7b4556ac31d72d2ddad383b5a5d93d2 (patch) | |
tree | f677991197f0fbbe67ca4cd8d216d9db6af63145 | |
parent | b61a93e7c26aa55623e284bca8ac19510397e848 (diff) | |
download | drakiso-24899da1b7b4556ac31d72d2ddad383b5a5d93d2.tar drakiso-24899da1b7b4556ac31d72d2ddad383b5a5d93d2.tar.gz drakiso-24899da1b7b4556ac31d72d2ddad383b5a5d93d2.tar.bz2 drakiso-24899da1b7b4556ac31d72d2ddad383b5a5d93d2.tar.xz drakiso-24899da1b7b4556ac31d72d2ddad383b5a5d93d2.zip |
Remove spurious 'use utf8' in comment.
-rw-r--r-- | bootloader/lang-names.txt | 3 | ||||
-rw-r--r-- | lib/MGA/DrakISO/BuildBoot.pm | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bootloader/lang-names.txt b/bootloader/lang-names.txt index 02f8132..ab28ad9 100644 --- a/bootloader/lang-names.txt +++ b/bootloader/lang-names.txt @@ -1,6 +1,5 @@ -# The GNU Unifont font contains all the glyphs used in this file.use utf8; +# The GNU Unifont font contains all the glyphs used in this file. # \x{nnnn} represents the Unicode code point U+nnnn (where nnnn is four hex digits). -use utf8; ( #"af_ZA" => "Afrikaans", # Afrikaans #"ar_EG" => "\x{fef2}\x{fe91}\x{feae}\x{fecb}", # Arabic diff --git a/lib/MGA/DrakISO/BuildBoot.pm b/lib/MGA/DrakISO/BuildBoot.pm index a778d79..9c28a53 100644 --- a/lib/MGA/DrakISO/BuildBoot.pm +++ b/lib/MGA/DrakISO/BuildBoot.pm @@ -32,6 +32,7 @@ use MDK::Common; use File::Copy qw(mv); use Try::Tiny; +use utf8; use MGA::DrakISO::LiveBuild; use MGA::DrakISO::Utils; |