From 25dc8e2d6f725070cdaf812cd58b9e8c4bfaddfd Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Tue, 10 Sep 2024 09:08:10 +0200 Subject: [PATCH] package/flutter-engine: fix typos in comments Signed-off-by: Peter Korsgaard Signed-off-by: Yann E. MORIN (cherry picked from commit cccd164fd63010ac01c8c797203362f0c3bfa7ac) Signed-off-by: Peter Korsgaard --- package/flutter-engine/Config.in | 2 +- package/flutter-engine/gen-tarball | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package/flutter-engine/Config.in b/package/flutter-engine/Config.in index 00bcd05cd4..610c26d933 100644 --- a/package/flutter-engine/Config.in +++ b/package/flutter-engine/Config.in @@ -1,4 +1,4 @@ -# Flutter includes a vender copy of clang which is mandatory to use for +# Flutter includes a vendor copy of clang which is mandatory to use for # compiling. These are the supported architectures. config BR2_PACKAGE_FLUTTER_ENGINE_ARCH_SUPPORTS bool diff --git a/package/flutter-engine/gen-tarball b/package/flutter-engine/gen-tarball index 23b121d1f9..5bfb8f60e8 100755 --- a/package/flutter-engine/gen-tarball +++ b/package/flutter-engine/gen-tarball @@ -66,10 +66,10 @@ gen_tarball() { # There are two issues with the flutter-engine buildsystem: # - it expects empty directories created by gclient.py to be present; that # means we can't use the mk_tar_gz helper method from support/download/helpers, - # becasue it does not include emnpty directories; + # because it does not include empty directories; # - it insists on having a full git repositoy, with .git et al., which means # we can't generate a reproducible archive anyway. - # So we jsut create a plain tarball. + # So we just create a plain tarball. ${TAR} -C "${SCRATCH_DIR}"/src -czf "${TARBALL_NAME}" . mv "${TARBALL_NAME}" "${TARBALL_DL_PATH}" }