From dc00fcd297ff182fecfa838166d7865368f0de39 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Tue, 10 Oct 2017 11:19:14 +0200 Subject: [PATCH] Avoid rename the meson cross compilation file. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This file is exported in CIĀ archive for other projects. If we change its name, it will not be exported and other projects will break. --- kiwix-build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiwix-build.py b/kiwix-build.py index be7d907..1903443 100755 --- a/kiwix-build.py +++ b/kiwix-build.py @@ -329,7 +329,7 @@ class BuildEnv: def setup_android(self): self.cmake_crossfile = self._gen_crossfile('cmake_android_cross_file.txt') - self.meson_crossfile = self._gen_crossfile('meson_android_cross_file.txt') + self.meson_crossfile = self._gen_crossfile('meson_cross_file.txt') def setup_armhf(self): self.cmake_crossfile = self._gen_crossfile('cmake_cross_file.txt')