frozen: Fix build on case-insensitive file systems

This commit is contained in:
Simon Menke
2023-12-24 18:59:56 +01:00
committed by GitHub
parent 6dca6ac7b9
commit bb3def8849
@@ -23,7 +23,10 @@ stdenv.mkDerivation rec {
# Since it has only two source files, the best course of action to support
# cross compilation is to create a small meson.build file.
# Relevant upstream issue: https://github.com/cesanta/frozen/pull/71
# We also remove the GN BUILD file to prevent conflicts on case-insesitive
# file systems.
preConfigure = ''
rm BUILD
cp ${./meson.build} meson.build
'';