_4th: fix editor for 64bit systems (#520756)

This commit is contained in:
Michael Daniels
2026-05-23 17:15:52 +00:00
committed by GitHub
+5
View File
@@ -20,6 +20,11 @@ stdenv.mkDerivation (finalAttrs: {
dontConfigure = true;
preBuild = ''
cp sources/include${if stdenv.hostPlatform.is64bit then "64" else "32"}/* sources/
make -C sources clean
'';
makeFlags = [
"-C sources"
"CC:=$(CC)"