Merge pull request #336890 from emilazy/push-xmwppmokytwn

mesonEmulatorHook: don’t use `lib.escapeShellArg`
This commit is contained in:
Nick Cao
2024-08-23 23:04:27 -04:00
committed by GitHub
+1 -1
View File
@@ -5674,7 +5674,7 @@ with pkgs;
substitutions = {
crossFile = writeText "cross-file.conf" ''
[binaries]
exe_wrapper = ${lib.escapeShellArg (stdenv.targetPlatform.emulator pkgs)}
exe_wrapper = '${lib.escape [ "'" "\\" ] (stdenv.targetPlatform.emulator pkgs)}'
'';
};
}